show transaction tags in insights explorer page

This commit is contained in:
MaysWind
2026-01-04 01:21:33 +08:00
parent 41739d97e7
commit 6634d5b791
6 changed files with 92 additions and 13 deletions
@@ -240,6 +240,17 @@
v-model="insightsExplorerDefaultDateRangeType"
/>
</v-col>
<v-col cols="12" md="6">
<v-select
item-title="displayName"
item-value="value"
persistent-placeholder
:label="tt('Show Transaction Tag')"
:placeholder="tt('Show Transaction Tag')"
:items="enableDisableOptions"
v-model="showTagInInsightsExplorerPage"
/>
</v-col>
</v-row>
</v-card-text>
</v-form>
@@ -405,6 +416,11 @@ const insightsExplorerDefaultDateRangeType = computed<number>({
set: (value) => settingsStore.setInsightsExplorerDefaultDateRangeType(value)
});
const showTagInInsightsExplorerPage = computed<boolean>({
get: () => settingsStore.appSettings.showTagInInsightsExplorerPage,
set: (value) => settingsStore.setShowTagInInsightsExplorerPage(value)
});
function init(): void {
loadingAccounts.value = true;