fixed status bar not showing
This commit is contained in:
parent
c271b1f386
commit
25f514a03d
4 changed files with 14 additions and 5 deletions
|
@ -1,12 +1,12 @@
|
|||
<div class="announcement inline"
|
||||
ng-show="indicator != 'loading' && (scheduled_maintenances.length || incidents.length)">
|
||||
<div ng-repeat="incident in incidents">
|
||||
<div ng-repeat="incident in incidents" class="message">
|
||||
<span class="quay-service-status-indicator" ng-class="indicator"
|
||||
ng-if="indicator != 'loading'"></span>
|
||||
ng-if="indicator != 'loading'"></span>
|
||||
<a ng-href="{{ incident.shortlink }}" class="quay-service-status-description">{{ incident.name }}</a>
|
||||
</div>
|
||||
|
||||
<div ng-repeat="scheduled in scheduled_maintenances">
|
||||
<div ng-repeat="scheduled in scheduled_maintenances" class="message">
|
||||
<i class="fa fa-calendar" style="margin-right: 6px;"></i>
|
||||
<span ng-switch on="scheduled.status" style="vertical-align: middle">
|
||||
<span ng-switch-when="scheduled">
|
||||
|
|
Reference in a new issue