From e38ba2ea0a88e671867eef1e991389e0b01f17d8 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Sat, 25 Apr 2026 20:50:16 +0800 Subject: [PATCH] update the label text of the dropdown component --- .../insights/dialogs/BatchUpdateCategoryDialog.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/desktop/insights/dialogs/BatchUpdateCategoryDialog.vue b/src/views/desktop/insights/dialogs/BatchUpdateCategoryDialog.vue index cbd8a15e..1ed79742 100644 --- a/src/views/desktop/insights/dialogs/BatchUpdateCategoryDialog.vue +++ b/src/views/desktop/insights/dialogs/BatchUpdateCategoryDialog.vue @@ -31,8 +31,8 @@ :show-selection-primary-text="true" :custom-selection-primary-text="getTransactionPrimaryCategoryName(categoryId, allCategories[CategoryType.Expense])" :custom-selection-secondary-text="getTransactionSecondaryCategoryName(categoryId, allCategories[CategoryType.Expense])" - :label="tt('Target Category')" - :placeholder="tt('Target Category')" + :label="tt('Expense Category')" + :placeholder="tt('Expense Category')" :items="allCategories[CategoryType.Expense]" v-model="categoryId" v-if="type === CategoryType.Expense"> @@ -48,8 +48,8 @@ :show-selection-primary-text="true" :custom-selection-primary-text="getTransactionPrimaryCategoryName(categoryId, allCategories[CategoryType.Income])" :custom-selection-secondary-text="getTransactionSecondaryCategoryName(categoryId, allCategories[CategoryType.Income])" - :label="tt('Target Category')" - :placeholder="tt('Target Category')" + :label="tt('Income Category')" + :placeholder="tt('Income Category')" :items="allCategories[CategoryType.Income]" v-model="categoryId" v-if="type === CategoryType.Income"> @@ -65,8 +65,8 @@ :show-selection-primary-text="true" :custom-selection-primary-text="getTransactionPrimaryCategoryName(categoryId, allCategories[CategoryType.Transfer])" :custom-selection-secondary-text="getTransactionSecondaryCategoryName(categoryId, allCategories[CategoryType.Transfer])" - :label="tt('Target Category')" - :placeholder="tt('Target Category')" + :label="tt('Transfer Category')" + :placeholder="tt('Transfer Category')" :items="allCategories[CategoryType.Transfer]" v-model="categoryId" v-if="type === CategoryType.Transfer">