diff --git a/src/controllers/herbarios-controller.js b/src/controllers/herbarios-controller.js index ee44b5de..0783d5be 100644 --- a/src/controllers/herbarios-controller.js +++ b/src/controllers/herbarios-controller.js @@ -46,7 +46,7 @@ export const listaTodosHerbariosAtivos = (limit, offset, where) => Herbario.find where, limit, offset, - order: [['id', 'DESC']], + order: [['nome', 'ASC']], }); export const buscarHerbario = (request, response, next) => {