Skip to content

Commit

Permalink
KYLIN-4716 Optimize the project page
Browse files Browse the repository at this point in the history
guangxuCheng authored and hit-lacus committed Sep 9, 2020
1 parent b519ecd commit f6278fa
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webapp/app/js/model/projectConfig.js
Original file line number Diff line number Diff line change
@@ -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'}
]

4 changes: 2 additions & 2 deletions webapp/app/partials/projects/projects.html
Original file line number Diff line number Diff line change
@@ -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}}

0 comments on commit f6278fa

Please sign in to comment.