@@ -189,7 +189,7 @@ export default class BISListForm extends Vue {
// Get gear from store
get gear(): Gear[] {
- return this.$store.state.gear.filter((item: Gear) => item.item_level >= this.minIl && item.item_level <= this.maxIl)
+ return this.$store.state.gear
}
// Get an array of item level choices based on the total min and max values
diff --git a/frontend/src/components/gear_dropdown.vue b/frontend/src/components/gear_dropdown.vue
index d64e1da8..d5ae2f80 100644
--- a/frontend/src/components/gear_dropdown.vue
+++ b/frontend/src/components/gear_dropdown.vue
@@ -9,7 +9,7 @@