Skip to content

Commit

Permalink
added generic_filter_list as an array in Camera component and display…
Browse files Browse the repository at this point in the history
…s these as options under filter dropdown
  • Loading branch information
capetillo committed Dec 21, 2023
1 parent e6389b8 commit 848f688
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/components/InstrumentControls/Camera.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,19 @@
>
{{ filter }}
</option>
<option
disabled
value="------"
>
---- Generic Filters ----
</option>
<option
v-for="(filter, index) in generic_filter_list"
:key="index"
:value="filter"
>
{{ filter }}
</option>
</b-select>
</b-field>
<b-field
Expand Down Expand Up @@ -366,6 +379,9 @@ export default {
],
quick_stacks_filter_list: [
'RGB irg', 'LRGB wirg', 'UBV ugr', 'O3HaS2'
],
generic_filter_list: [
'Lum', 'Blue', 'Green', 'Red', 'NIR', 'Exo'
]
}
},
Expand Down

0 comments on commit 848f688

Please sign in to comment.