diff --git a/src/views/desktop/statistics/TransactionPage.vue b/src/views/desktop/statistics/TransactionPage.vue
index f67341a0..155a019f 100644
--- a/src/views/desktop/statistics/TransactionPage.vue
+++ b/src/views/desktop/statistics/TransactionPage.vue
@@ -64,9 +64,9 @@
{{ dateRangeName(query) }}
-
+
-
+
@@ -265,7 +265,7 @@
-
+
@@ -591,22 +591,22 @@ export default {
queryAllFilterAccountIdsCount() {
return this.transactionsStore.allFilterAccountIdsCount;
},
- queryAllFilterCategoryIdsArray() {
+ queryAllSelectedFilterCategoryIds() {
if (this.queryAllFilterCategoryIdsCount === 0) {
- return [''];
+ return '';
} else if (this.queryAllFilterCategoryIdsCount === 1) {
- return [this.query.categoryIds];
+ return this.query.categoryIds;
} else { // this.queryAllFilterCategoryIdsCount > 1
- return ['multiple'];
+ return 'multiple';
}
},
- queryAllFilterAccountIdsArray() {
+ queryAllSelectedFilterAccountIds() {
if (this.queryAllFilterAccountIdsCount === 0) {
- return [''];
+ return '';
} else if (this.queryAllFilterAccountIdsCount === 1) {
- return [this.query.accountIds];
+ return this.query.accountIds;
} else { // this.queryAllFilterAccountIdsCount > 1
- return ['multiple'];
+ return 'multiple';
}
},
queryCategoryName() {