Skip to content

Commit

Permalink
Fixes case bulk actions UI component (#2404)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvilanova authored Aug 11, 2022
1 parent 6dfa059 commit c5cdfe3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 11 additions & 7 deletions src/dispatch/static/dispatch/src/case/BulkEditSheet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,23 @@
<v-list-item-content>
<v-list-item-subtitle>{{ selected.length }} selected</v-list-item-subtitle>
</v-list-item-content>

<v-spacer />

<v-list-item-icon>
<v-btn text @click="saveBulk({ status: 'Active' })">
<v-btn text @click="saveBulk({ status: 'New' })">
<v-icon>mdi-alert-decagram</v-icon>
Mark New
</v-btn>
</v-list-item-icon>
<v-list-item-icon>
<v-btn text @click="saveBulk({ status: 'Triage' })">
<v-icon>mdi-check</v-icon>
Mark Active
Mark Triage
</v-btn>
</v-list-item-icon>
<v-list-item-icon>
<v-btn text @click="saveBulk({ status: 'Stable' })">
<v-icon>mdi-lock</v-icon>
Mark Stable
<v-btn text @click="saveBulk({ status: 'Escalated' })">
<v-icon>mdi-swap-horizontal</v-icon>
Mark Escalated
</v-btn>
</v-list-item-icon>
<v-list-item-icon>
Expand Down
2 changes: 0 additions & 2 deletions src/dispatch/static/dispatch/src/incident/BulkEditSheet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
<v-list-item-content>
<v-list-item-subtitle>{{ selected.length }} selected</v-list-item-subtitle>
</v-list-item-content>

<v-spacer />

<v-list-item-icon>
<v-btn text @click="saveBulk({ status: 'Active' })">
<v-icon>mdi-check</v-icon>
Expand Down

0 comments on commit c5cdfe3

Please sign in to comment.