diff options
Diffstat (limited to 'iridescence/src/components')
-rw-r--r-- | iridescence/src/components/ProductSearch.vue | 2 |
1 files changed, 1 insertions, 1 deletions
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, |