Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix color of escalate/report incident icon and make it mdi-fire instead of mdi-alert-outline #4049

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dispatch/static/dispatch/src/case/EditSheet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
v-if="status == 'New' || status == 'Triage'"
@click="showEscalateDialog(selected)"
color="error"
prepend-icon="mdi-alert-circle-outline"
prepend-icon="mdi-fire"
>
Escalate Case
</v-btn>
Expand Down
4 changes: 2 additions & 2 deletions src/dispatch/static/dispatch/src/components/AppDrawer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
:to="{ name: 'report' }"
>
<template #prepend>
<v-icon color="white">mdi-alert-circle-outline</v-icon>
<v-icon color="white">mdi-fire</v-icon>
</template>
<v-list-item-title class="text-uppercase text-body-2">
Report incident
Expand Down Expand Up @@ -92,7 +92,7 @@
:to="{ name: 'report' }"
>
<template #prepend>
<v-icon>mdi-alert-circle-outline</v-icon>
<v-icon color="white">mdi-fire</v-icon>
</template>
<v-list-item-title class="text-uppercase text-body-2">Report incident</v-list-item-title>
<v-tooltip
Expand Down
Loading