feat: #6957: Rename FetchedTags instance tag
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javier Segarra 2024-05-16 23:02:49 +02:00
parent 38d7c96c00
commit dba42a6001
1 changed files with 4 additions and 4 deletions

View File

@ -35,13 +35,13 @@ const tags = computed(() => {
<div class="fetchedTags"> <div class="fetchedTags">
<div class="wrap"> <div class="wrap">
<div <div
v-for="(value, key) in tags" v-for="(val, key) in tags"
:key="key" :key="key"
class="inline-tag" class="inline-tag"
:title="`${key}: ${value}`" :title="`${key}: ${val}`"
:class="{ empty: !value }" :class="{ empty: !val }"
> >
{{ value }} {{ val }}
</div> </div>
</div> </div>
</div> </div>