Skip to content

Commit

Permalink
remove duplicated name
Browse files Browse the repository at this point in the history
  • Loading branch information
fjogeleit committed Sep 2, 2024
1 parent b2aac50 commit 747aaa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<v-container fluid>
<v-row>
<v-col cols="12" :sm="Math.ceil(24 / showed.length)" :md="Math.ceil(12 / showed.length)" v-for="status in showed" :key="status">
<v-card flat :title="`${status} results`" :class="['text-white', 'text-center', `bg-status-${status}`]">
<v-card flat :title="status" :class="['text-white', 'text-center', `bg-status-${status}`]">
<v-card-text class="text-h3 my-4">
{{ data[status] }}
</v-card-text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<v-container fluid>
<v-row>
<v-col cols="12" :sm="Math.ceil(24 / showed.length)" :md="Math.ceil(12 / showed.length)" v-for="severity in showed" :key="severity">
<v-card flat :title="`${severity} results`" :class="['text-white', 'text-center', `bg-severity-${severity}`]">
<v-card flat :title="severity" :class="['text-white', 'text-center', `bg-severity-${severity}`]">
<v-card-text class="text-h3 my-4">
{{ data[severity] }}
</v-card-text>
Expand Down

0 comments on commit 747aaa3

Please sign in to comment.