diff --git a/src/components/mobile/TransactionTagSelectionSheet.vue b/src/components/mobile/TransactionTagSelectionSheet.vue index 007cfb15..ad679e37 100644 --- a/src/components/mobile/TransactionTagSelectionSheet.vue +++ b/src/components/mobile/TransactionTagSelectionSheet.vue @@ -1,6 +1,6 @@ @@ -12,42 +12,78 @@ - + - + + :class="isChecked(tag.id) ? 'list-item-selected' : ''" + :value="tag.id" + :checked="isChecked(tag.id)" + :key="tag.id" + v-for="tag in allTags" + v-show="!tag.hidden || isChecked(tag.id)" + @change="changeTagSelection"> - {{ item.name }} + {{ tag.name }} + + + + + + + + + + + + + + + + + + +