From c8d6afc7c25acb75ede1557bff7f2bf4b82cc1d7 Mon Sep 17 00:00:00 2001 From: OrangeM21 Date: Thu, 23 Apr 2020 17:17:32 +0800 Subject: [PATCH] =?UTF-8?q?[hotfix]=E4=BF=AE=E6=94=B9=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ListTable/TableAction.vue | 2 +- src/components/TagSearch/index.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ListTable/TableAction.vue b/src/components/ListTable/TableAction.vue index e25c30ebc..047682fba 100644 --- a/src/components/ListTable/TableAction.vue +++ b/src/components/ListTable/TableAction.vue @@ -6,7 +6,7 @@
- +
diff --git a/src/components/TagSearch/index.vue b/src/components/TagSearch/index.vue index 6ebcfbd38..a6c0bb788 100644 --- a/src/components/TagSearch/index.vue +++ b/src/components/TagSearch/index.vue @@ -5,7 +5,7 @@ - {{ option.label }} + {{ option.label }} @@ -20,7 +20,7 @@ export default { name: 'TagSearch', props: { - filterFields: { + tagSearch: { type: Array, default() { return [ @@ -48,7 +48,7 @@ export default { computed: { // eslint-disable-next-line vue/return-in-computed-property filterLabel() { - for (const field of this.filterFields) { + for (const field of this.tagSearch) { if (field.key === this.filterKey) { return field.label }