Skip to content

Commit

Permalink
small fix (epicmaxco#707)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilearnjs authored Jan 29, 2020
1 parent ff7cf04 commit 62213e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
:title="$t('progressBars.colors')"
>
<div class="row">
<div v-for="n in 6" :key="n" class="flex md4 xs12">
<div v-for="n in 6" :key="`pb-${n}`" class="flex md4 xs12">
<va-progress-bar
:value="value * n / 6"
:color="colors[n - 1]"
>{{ colors[n - 1] }}
</va-progress-bar>
</div>
<div v-for="n in 6" :key="n" class="flex md2 xs6">
<div v-for="n in 6" :key="`pc-${n}`" class="flex md2 xs6">
<va-progress-circle
class="ma-auto"
:value="value * n / 6"
Expand Down

0 comments on commit 62213e4

Please sign in to comment.