forked from nutomic/joinpeertube
Fix vuejs warnings
This commit is contained in:
parent
e661be43a9
commit
58b9807c7a
3 changed files with 3 additions and 4 deletions
|
@ -44,7 +44,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="tags">
|
<div class="tags">
|
||||||
<div class="tag" v-for="tag in tags">{{ tag }}</div>
|
<div class="tag" v-for="tag in tags" :key="tag">{{ tag }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -121,7 +121,6 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
|
||||||
@media screen and (max-width: $responsive-screen) {
|
@media screen and (max-width: $responsive-screen) {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<b-dropdown-item v-for="(lang, locale) in $language.available" :href="buildLocaleLink(locale)">
|
<b-dropdown-item v-for="(lang, locale) in $language.available" :key="locale" :href="buildLocaleLink(locale)">
|
||||||
{{ lang }}
|
{{ lang }}
|
||||||
</b-dropdown-item>
|
</b-dropdown-item>
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,7 @@ main {
|
||||||
border-left: 0.3em solid transparent;
|
border-left: 0.3em solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
p > a {
|
||||||
color: #000;
|
color: #000;
|
||||||
font-weight: $font-semibold;
|
font-weight: $font-semibold;
|
||||||
border-bottom: 3px solid $orange;
|
border-bottom: 3px solid $orange;
|
||||||
|
|
Loading…
Reference in a new issue