diff options
Diffstat (limited to 'viewer/src/components/LdProposition.vue')
-rw-r--r-- | viewer/src/components/LdProposition.vue | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/viewer/src/components/LdProposition.vue b/viewer/src/components/LdProposition.vue index 1490689..97f47da 100644 --- a/viewer/src/components/LdProposition.vue +++ b/viewer/src/components/LdProposition.vue | |||
@@ -20,7 +20,7 @@ | |||
20 | 20 | ||
21 | <template> | 21 | <template> |
22 | <div class="proposition"> | 22 | <div class="proposition"> |
23 | <h2 v-if="showCategory && proposedTags.length" class="subtitle category">{{title}}</h2> | 23 | <h2 v-if="showCategory && proposedTags.length" class="subtitle category">{{ title }}</h2> |
24 | <div v-for="proposed in proposedTags" :key="proposed.rawTag"> | 24 | <div v-for="proposed in proposedTags" :key="proposed.rawTag"> |
25 | <a | 25 | <a |
26 | class="operation-btns link" | 26 | class="operation-btns link" |
@@ -42,9 +42,10 @@ | |||
42 | class="operation-tag link" | 42 | class="operation-tag link" |
43 | :title="$t('tag-propositions.intersection')" | 43 | :title="$t('tag-propositions.intersection')" |
44 | @click="add(Operation.INTERSECTION, proposed.rawTag)" | 44 | @click="add(Operation.INTERSECTION, proposed.rawTag)" |
45 | >{{proposed.rawTag}}</a> | 45 | >{{ proposed.rawTag }}</a |
46 | > | ||
46 | 47 | ||
47 | <div class="disabled" :title="$t('tag-propositions.item-count')">{{proposed.count}}</div> | 48 | <div class="disabled" :title="$t('tag-propositions.item-count')">{{ proposed.count }}</div> |
48 | </div> | 49 | </div> |
49 | </div> | 50 | </div> |
50 | </template> | 51 | </template> |