Skip to content

Commit

Permalink
fix: add stop to prevent sort on missing buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
bfritscher committed Jan 29, 2024
1 parent 4601d54 commit 27ec157
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/pages/Grade.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@
debounce="500"
dense
autocomplete="off"
@click.stop=""
@update:model-value="
API.saveOptions();
gradeService.calculateGrades();
Expand Down Expand Up @@ -193,7 +194,7 @@
flat
dense
padding="xs"
@click="ui.showDataTable = !ui.showDataTable"
@click.stop="ui.showDataTable = !ui.showDataTable"
>
<q-tooltip>Datatable</q-tooltip>
</q-btn>
Expand All @@ -214,7 +215,7 @@
flat
dense
padding="xs"
@click="ui.showHistogram = !ui.showHistogram"
@click.stop="ui.showHistogram = !ui.showHistogram"
>
<q-tooltip>Histogram</q-tooltip>
</q-btn>
Expand All @@ -223,7 +224,7 @@
padding="xs"
flat
dense
@click="ui.displayQuestions = !ui.displayQuestions"
@click.stop="ui.displayQuestions = !ui.displayQuestions"
>{{ ui.displayQuestions ? 'hide' : 'show' }} all</q-btn
>
</q-th>
Expand Down

0 comments on commit 27ec157

Please sign in to comment.