Skip to content

Commit

Permalink
added quick_stacks_filter_list to Camera component as an array and di…
Browse files Browse the repository at this point in the history
…splays them as options
  • Loading branch information
capetillo committed Dec 21, 2023
1 parent 58ad015 commit e6389b8
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/components/InstrumentControls/Camera.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,21 @@
>
{{ filter[0] }}
</option>
<option
disabled
value="------"
>
---- Quick Stacks ----
</option>
<option
v-for="(filter, index) in quick_stacks_filter_list"
:key="index"
:value="filter"
>
{{ filter }}
</option>
</b-select>
</b-field>

<b-field
horizontal
label="Zoom"
Expand Down Expand Up @@ -351,6 +363,9 @@ export default {
isExpandedStatusVisible: false,
zoom_options: [
'Full', 'Small sq.', '71%', '50%', '35%', '25%', '18%', '12.5%', '9%', '6%'
],
quick_stacks_filter_list: [
'RGB irg', 'LRGB wirg', 'UBV ugr', 'O3HaS2'
]
}
},
Expand Down

0 comments on commit e6389b8

Please sign in to comment.