7525-devToTest #419

Merged
alexm merged 177 commits from 7525-devToTest into test 2024-06-04 08:06:27 +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>