From 9c5b036bd537f1465e3ecacbc98a192f98a84e7f Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Mon, 16 Nov 2020 19:04:30 -0500 Subject: Featured First sorting is featured and then by-id/newest first. --- iridescence/src/components/ProductSearch.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iridescence/src/components') diff --git a/iridescence/src/components/ProductSearch.vue b/iridescence/src/components/ProductSearch.vue index 7d70a7c..91b28a5 100644 --- a/iridescence/src/components/ProductSearch.vue +++ b/iridescence/src/components/ProductSearch.vue @@ -34,7 +34,7 @@ export default { return { term: "", sortOptions: { - "Featured Items": (_, b) => b.featured, + "Featured Items": a => (a.featured ? -1 : 1), "In Stock": (a, b) => a.quantity < b.quantity, "Made to Order": (a, b) => a.quantity > b.quantity, "A to Z": (a, b) => a.name > b.name, -- cgit v1.2.3