summaryrefslogtreecommitdiff
path: root/iridescence/src/components/ProductSearch.vue
diff options
context:
space:
mode:
Diffstat (limited to 'iridescence/src/components/ProductSearch.vue')
-rw-r--r--iridescence/src/components/ProductSearch.vue2
1 files changed, 2 insertions, 0 deletions
diff --git a/iridescence/src/components/ProductSearch.vue b/iridescence/src/components/ProductSearch.vue
index 430721c..907602c 100644
--- a/iridescence/src/components/ProductSearch.vue
+++ b/iridescence/src/components/ProductSearch.vue
@@ -35,6 +35,8 @@ export default {
term: "",
sortOptions: {
"Featured Items First": (_, b) => b.featured,
+ "In Stock": (a, b) => a.quantity < b.quantity,
+ "Made to Order": (a, b) => a.quantity > b.quantity,
"Name (A-Z)": (a, b) => a.name > b.name,
"Name (Z-A)": (a, b) => a.name < b.name,
"Date Added (New to Old)": () => 0,