Skip to content

Commit

Permalink
style: remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
sbgap committed Nov 11, 2024
1 parent a551bde commit 3cc8328
Showing 1 changed file with 0 additions and 48 deletions.
48 changes: 0 additions & 48 deletions src/components/NotificationRuleList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -795,54 +795,6 @@
<v-divider v-if="index < props.item.triggers.length - 1" />
</v-container>
</div>
<!-- <v-chip
v-for="trigger in props.item.triggers"
:key="trigger"
outline
>
<span v-if="!emptyArray(trigger.from_severity)">from</span>
<v-chip
v-if="!emptyArray(trigger.from_severity)"
outline
>
<v-chip
v-for="severity in trigger.from_severity"
:key="severity"
outline
small
>
{{ severity }}
</v-chip>
</v-chip>
<span v-if="!emptyArray(trigger.to_severity)">to</span>
<v-chip
v-if="!emptyArray(trigger.to_severity)"
outline
>
<v-chip
v-for="severity in trigger.to_severity"
:key="severity"
outline
small
>
{{ severity }}
</v-chip>
</v-chip>
<span v-if="!emptyArray(trigger.status)">status</span>
<v-chip
v-if="!emptyArray(trigger.status)"
outline
>
<v-chip
v-for="status in trigger.status"
:key="status"
outline
small
>
{{ status }}
</v-chip>
</v-chip>
</v-chip> -->
</td>
<td>
<v-chip
Expand Down

0 comments on commit 3cc8328

Please sign in to comment.