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/01 07:03:17 UTC

[incubator-dubbo-ops] branch develop updated: break table word #172

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 20acf42  break table word #172
20acf42 is described below

commit 20acf42cda9fe12c59e91ae3011e5442828f53f5
Author: nzomkxia <z8...@gmail.com>
AuthorDate: Thu Nov 1 15:03:04 2018 +0800

    break table word #172
---
 dubbo-admin-frontend/src/components/ServiceSearch.vue | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/dubbo-admin-frontend/src/components/ServiceSearch.vue b/dubbo-admin-frontend/src/components/ServiceSearch.vue
index 23bb44d..fa8b8d1 100644
--- a/dubbo-admin-frontend/src/components/ServiceSearch.vue
+++ b/dubbo-admin-frontend/src/components/ServiceSearch.vue
@@ -69,7 +69,7 @@
               :items="services"
             >
               <template slot="items" slot-scope="props">
-                <td>{{props.item.service}}</td>
+                <td >{{props.item.service}}</td>
                 <td>{{props.item.group}}</td>
                 <td>{{props.item.appName}}</td>
                 <td class="text-xs-center px-0"><v-btn small color='primary' :href='getHref(props.item.service, props.item.appName)'>Detail</v-btn></td>
@@ -181,3 +181,12 @@
   }
 </script>
 
+<style scoped>
+  table.v-table tbody td {
+    font-size: 13px;
+    font-weight: 400;
+    word-break: break-all;
+  }
+
+</style>
+