From aea4cf7e8bf7aae2a32e1df9f3232dd28e4c42af Mon Sep 17 00:00:00 2001 From: MaysWind Date: Tue, 23 Jul 2024 01:01:15 +0800 Subject: [PATCH] fix the bug that hidden tags don't display in transaction detail page --- src/components/mobile/TransactionTagSelectionSheet.vue | 2 +- src/views/desktop/transactions/list/dialogs/EditDialog.vue | 4 ++-- src/views/mobile/transactions/EditPage.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/mobile/TransactionTagSelectionSheet.vue b/src/components/mobile/TransactionTagSelectionSheet.vue index b911768a..ae193154 100644 --- a/src/components/mobile/TransactionTagSelectionSheet.vue +++ b/src/components/mobile/TransactionTagSelectionSheet.vue @@ -22,7 +22,7 @@ :checked="isChecked(item.id)" :key="item.id" v-for="item in items" - v-show="!item.hidden" + v-show="!item.hidden || isChecked(item.id)" @change="changeItemSelection">