You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by xx...@apache.org on 2020/09/09 02:33:48 UTC

[kylin] branch master updated: KYLIN-4716 Optimize the project page

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

xxyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/master by this push:
     new f6278fa  KYLIN-4716 Optimize the project page
f6278fa is described below

commit f6278faa24bedc4c6df0050bd518f417baa055ab
Author: Guangxu Cheng <gx...@apache.org>
AuthorDate: Tue Aug 25 12:02:17 2020 +0800

    KYLIN-4716 Optimize the project page
---
 webapp/app/js/model/projectConfig.js       | 2 +-
 webapp/app/partials/projects/projects.html | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/webapp/app/js/model/projectConfig.js b/webapp/app/js/model/projectConfig.js
index 0fad011..2817329 100644
--- a/webapp/app/js/model/projectConfig.js
+++ b/webapp/app/js/model/projectConfig.js
@@ -21,7 +21,7 @@ KylinApp.constant('projectConfig', {
     {attr: 'name', name: 'Name'},
     {attr: 'owner', name: 'Owner'},
     {attr: 'description', name: 'Description'},
-    {attr: 'realizations.length', name: '#Cubes'},
+    {attr: 'realizations.length', name: 'Cubes'},
     {attr: 'create_time_utc', name: 'Create Time'}
   ]
 
diff --git a/webapp/app/partials/projects/projects.html b/webapp/app/partials/projects/projects.html
index 9daa983..0f6e14c 100644
--- a/webapp/app/partials/projects/projects.html
+++ b/webapp/app/partials/projects/projects.html
@@ -47,8 +47,8 @@
         </thead>
 
         <tbody ng-repeat="project in projects | orderObjectBy:state.filterAttr:state.filterReverse">
-            <tr ng-class="{accordion:true}" style="cursor: pointer">
-                <td  ng-click="project.showDetail=!project.showDetail;">
+            <tr ng-class="{accordion:true}" style="cursor: pointer" ng-click="project.showDetail=!project.showDetail;">
+                <td>
                     <i ng-show="!project.showDetail" class="fa fa-chevron-circle-right blue"></i>
                     <i ng-show="project.showDetail" class="fa fa-chevron-circle-down blue"></i>
                     {{ project.name}}