You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by mi...@apache.org on 2018/11/09 08:42:59 UTC

[incubator-dubbo-ops] branch develop updated: wildcard search hint #179

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 ed43595  wildcard search hint #179
ed43595 is described below

commit ed4359556c153db77cffb5993129d108d8ad437d
Author: nzomkxia <z8...@gmail.com>
AuthorDate: Fri Nov 9 16:42:48 2018 +0800

    wildcard search hint #179
---
 dubbo-admin-frontend/src/components/ServiceSearch.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dubbo-admin-frontend/src/components/ServiceSearch.vue b/dubbo-admin-frontend/src/components/ServiceSearch.vue
index 43b5cf4..f3c61c0 100644
--- a/dubbo-admin-frontend/src/components/ServiceSearch.vue
+++ b/dubbo-admin-frontend/src/components/ServiceSearch.vue
@@ -142,11 +142,11 @@
       },
       hint () {
         if (this.selected === 0) {
-          return 'Service ID, org.apache.dubbo.demo.api.DemoService'
+          return 'Service ID, org.apache.dubbo.demo.api.DemoService, * for all services'
         } else if (this.selected === 1) {
           return 'Find all services provided by the target server on the specified IP address'
         } else if (this.selected === 2) {
-          return 'Input an application name to find all services provided by one particular application.'
+          return 'Input an application name to find all services provided by one particular application, * for all'
         }
       }
     },