Skip to content

Commit

Permalink
enforce selection made for radio buttons in export plugin (spaceteles…
Browse files Browse the repository at this point in the history
  • Loading branch information
cshanahan1 authored Apr 1, 2024
1 parent 8827330 commit 6dea02b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions jdaviz/configs/default/plugins/export/export.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
:items="viewer_items"
:selected.sync="viewer_selected"
:multiselect="multiselect"
:single_select_allow_blank="true"
:single_select_allow_blank="false"
>
</plugin-inline-select>
<v-row v-if="viewer_selected.length > 0" class="row-min-bottom-padding">
Expand Down Expand Up @@ -85,7 +85,7 @@
:items="dataset_items"
:selected.sync="dataset_selected"
:multiselect="multiselect"
:single_select_allow_blank="true"
:single_select_allow_blank="false"
>
</plugin-inline-select>
</div>
Expand All @@ -99,7 +99,7 @@
:items="subset_items"
:selected.sync="subset_selected"
:multiselect="multiselect"
:single_select_allow_blank="true"
:single_select_allow_blank="false"
>
</plugin-inline-select>
</div>
Expand Down Expand Up @@ -129,7 +129,7 @@
:items="table_items"
:selected.sync="table_selected"
:multiselect="multiselect"
:single_select_allow_blank="true"
:single_select_allow_blank="false"
>
</plugin-inline-select>
<v-row v-if="table_selected.length > 0" class="row-min-bottom-padding">
Expand All @@ -152,7 +152,7 @@
:items="plot_items"
:selected.sync="plot_selected"
:multiselect="multiselect"
:single_select_allow_blank="true"
:single_select_allow_blank="false"
>
</plugin-inline-select>
</div>
Expand Down

0 comments on commit 6dea02b

Please sign in to comment.