Skip to content

Commit

Permalink
fix: change disabled color to red (from orange)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssiyad committed Jun 20, 2023
1 parent 10ecf11 commit f7218fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desk/src/pages/desk/escalation/EscalationRuleList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@row-click="openRule"
>
<template #is_enabled="{ data }">
<Badge :theme="data.is_enabled ? 'green' : 'orange'" variant="subtle">
<Badge :theme="data.is_enabled ? 'green' : 'red'" variant="subtle">
{{ data.is_enabled ? "Enabled" : "Disabled" }}
</Badge>
</template>
Expand Down

0 comments on commit f7218fb

Please sign in to comment.