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-admin.git


The following commit(s) were added to refs/heads/develop by this push:
     new 8f861e2  fix service url with "/"
8f861e2 is described below

commit 8f861e2888bf04a8b40deedecf818099d058ccf0
Author: nzomkxia <[email protected]>
AuthorDate: Tue May 21 17:40:51 2019 +0800

    fix service url with "/"
---
 dubbo-admin-ui/src/components/governance/AccessControl.vue | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dubbo-admin-ui/src/components/governance/AccessControl.vue 
b/dubbo-admin-ui/src/components/governance/AccessControl.vue
index 2cd6a34..40aa3ed 100644
--- a/dubbo-admin-ui/src/components/governance/AccessControl.vue
+++ b/dubbo-admin-ui/src/components/governance/AccessControl.vue
@@ -491,6 +491,9 @@ export default {
       } else {
         itemId = item.application
       }
+      if (itemId.includes('/')) {
+        itemId = itemId.replace('/', '*')
+      }
       Object.assign(this.confirm, {
         enable: true,
         title: 'warnDeleteAccessControl',

Reply via email to