This is an automated email from the ASF dual-hosted git repository.
min pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.git
The following commit(s) were added to refs/heads/develop by this push:
new 5d94412 search filter bug fix
5d94412 is described below
commit 5d944128769fbe6f8eb413b7620e2e2100964f60
Author: nzomkxia <[email protected]>
AuthorDate: Fri Jan 11 14:09:30 2019 +0800
search filter bug fix
---
dubbo-admin-frontend/src/components/governance/TagRule.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dubbo-admin-frontend/src/components/governance/TagRule.vue
b/dubbo-admin-frontend/src/components/governance/TagRule.vue
index 19242fe..e776576 100644
--- a/dubbo-admin-frontend/src/components/governance/TagRule.vue
+++ b/dubbo-admin-frontend/src/components/governance/TagRule.vue
@@ -155,7 +155,7 @@
]
},
submit: function () {
- this.filter = document.querySelector('#serviceSearch').value.trim()
+ this.filter = this.filter.trim()
this.search(this.filter, true)
},
search: function (filter, rewrite) {