This is an automated email from the ASF dual-hosted git repository.

journey pushed a commit to branch dev-1.2.1
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git


The following commit(s) were added to refs/heads/dev-1.2.1 by this push:
     new 742a664  Added hints in Resource Center (#1891)
742a664 is described below

commit 742a664ef0bce1e3f56f6e93d8880b1a9c2e44a4
Author: break60 <[email protected]>
AuthorDate: Tue Feb 4 18:08:45 2020 +0800

    Added hints in Resource Center (#1891)
---
 .../conf/home/pages/resource/pages/file/pages/list/_source/list.vue   | 4 ++--
 .../home/pages/resource/pages/udf/pages/function/_source/list.vue     | 4 ++--
 .../home/pages/resource/pages/udf/pages/resource/_source/list.vue     | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/file/pages/list/_source/list.vue
 
b/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/file/pages/list/_source/list.vue
index 513d0d1..dcbca4e 100644
--- 
a/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/file/pages/list/_source/list.vue
+++ 
b/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/file/pages/list/_source/list.vue
@@ -46,11 +46,11 @@
             <span>{{parseInt(pageNo === 1 ? ($index + 1) : (($index + 1) + 
(pageSize * (pageNo - 1))))}}</span>
           </td>
           <td>
-            <span class="ellipsis">
+            <span class="ellipsis" v-tooltip.large.top.start="{text: 
item.alias, maxWidth: '500px'}">
               <a href="javascript:" class="links" 
@click="_go(item)">{{item.alias}}</a>
             </span>
           </td>
-          <td><span class="ellipsis">{{item.fileName}}</span></td>
+          <td><span class="ellipsis" v-tooltip.large.top.start="{text: 
item.fileName, maxWidth: '500px'}">{{item.fileName}}</span></td>
           <td>
             <span v-if="item.description" class="ellipsis" 
v-tooltip.large.top.start="{text: item.description, maxWidth: 
'500px'}">{{item.description}}</span>
             <span v-else>-</span>
diff --git 
a/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/function/_source/list.vue
 
b/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/function/_source/list.vue
index 0bc6204..8fbcfbe 100644
--- 
a/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/function/_source/list.vue
+++ 
b/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/function/_source/list.vue
@@ -55,11 +55,11 @@ v-ps<template>
             <span>{{$index + 1}}</span>
           </td>
           <td>
-            <span class="ellipsis">
+            <span class="ellipsis" v-tooltip.large.top.start="{text: 
item.funcName, maxWidth: '500px'}">
               <a href="javascript:" class="links">{{item.funcName}}</a>
             </span>
           </td>
-          <td><span class="ellipsis">{{item.className || '-'}}</span></td>
+          <td><span class="ellipsis" v-tooltip.large.top.start="{text: 
item.className, maxWidth: '500px'}">{{item.className || '-'}}</span></td>
           <!-- <td>
             <span>{{item.argTypes || '-'}}</span>
           </td> -->
diff --git 
a/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/resource/_source/list.vue
 
b/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/resource/_source/list.vue
index 6337ef4..ab4e88d 100644
--- 
a/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/resource/_source/list.vue
+++ 
b/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/resource/_source/list.vue
@@ -49,11 +49,11 @@
             <span>{{parseInt(pageNo === 1 ? ($index + 1) : (($index + 1) + 
(pageSize * (pageNo - 1))))}}</span>
           </td>
           <td>
-            <span class="ellipsis">
+            <span class="ellipsis" v-tooltip.large.top.start="{text: 
item.alias, maxWidth: '500px'}">
               <a href="javascript:" class="links" >{{item.alias}}</a>
             </span>
           </td>
-          <td><span class="ellipsis">{{item.fileName}}</span></td>
+          <td><span class="ellipsis" v-tooltip.large.top.start="{text: 
item.fileName, maxWidth: '500px'}">{{item.fileName}}</span></td>
           <td>
             <span>{{_rtSize(item.size)}}</span>
           </td>

Reply via email to