You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ni...@apache.org on 2020/02/07 14:26:17 UTC

[kylin] 22/44: KYLIN-3956 Segments of not only streaming cube but also batch cube need to show their status

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

nic pushed a commit to branch 3.0.x
in repository https://gitbox.apache.org/repos/asf/kylin.git

commit 393bc1f16e3f7558de0882e4a117c47c638c36e0
Author: yaqian.zhang <59...@qq.com>
AuthorDate: Fri Dec 13 17:24:34 2019 +0800

    KYLIN-3956 Segments of not only streaming cube but also batch cube need to show their status
---
 webapp/app/partials/cubes/cube_detail.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webapp/app/partials/cubes/cube_detail.html b/webapp/app/partials/cubes/cube_detail.html
index 17e89b4..b747e84 100755
--- a/webapp/app/partials/cubes/cube_detail.html
+++ b/webapp/app/partials/cubes/cube_detail.html
@@ -109,7 +109,7 @@
             <div ng-repeat="table in cube.hbase" class="cube-segment-list" ng-class="{'cube-broken-segment': table.regionCount === 0}">
                 <h5><b>Segment:</b> {{table.segmentName}}</h5>
                 <ul>
-                    <li ng-if="cube.streaming">Status: <span>{{table.segmentStatus}}</span></li>
+                    <li>Status: <span>{{table.segmentStatus}}</span></li>
                     <li ng-if="cube.model.partition_desc.partition_date_column">Start Time: <span>{{table.dateRangeStart | reverseToGMT0}}</span></li>
                     <li ng-if="cube.model.partition_desc.partition_date_column">End Time: <span>{{table.dateRangeEnd | reverseToGMT0}}</span></li>
                     <li>Source Count: <span>{{table.sourceCount}}</span></li>