#6957: FetchedTags refactor template #382

Merged
jsegarra merged 11 commits from 6957_refactorFetechedTags into dev 2024-05-24 06:18:24 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit dba42a6001 - Show all commits

View File

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