Refactor/implement new design for Wine #48

Merged
KevinMidboe merged 8 commits from refactor/wine-ui into master 2020-10-11 16:27:38 +00:00
Showing only changes of commit 5f973b199d - Show all commits

View File

@@ -139,7 +139,9 @@ const allWinesSummary = async (req, res) => {
}
}
return res.json(Object.values(wines));
wines = Object.values(wines).reverse()
return res.json(wines);
};
module.exports = {