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
}