Hide progress bar for normal users

They cannot get the progress information anyway
This commit is contained in:
Girish Ramakrishnan
2019-10-11 14:41:42 -07:00
parent 0d94e4290b
commit 4f9d8915fb

View File

@@ -91,7 +91,7 @@
<div class="text-muted status" style="text-overflow: ellipsis; white-space: nowrap; overflow: hidden" uib-tooltip="{{ app | appProgressMessage }}">
{{ app | installationStateLabel:user }}
</div>
<div class="status" ng-style="{ 'visibility': (app | installationActive) ? 'visible' : 'hidden' }">
<div class="status" ng-style="{ 'visibility': user.admin && (app | installationActive) ? 'visible' : 'hidden' }">
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{ app.progress }}%"></div>
</div>