just return 'paused'

This commit is contained in:
Girish Ramakrishnan
2019-09-26 22:14:07 -07:00
parent 24888dfad5
commit 6b1a9fa837
+1 -1
View File
@@ -378,7 +378,7 @@ app.filter('installationStateLabel', function () {
}
case ISTATES.INSTALLED: {
if (app.debugMode) {
return app.debugMode.readonlyRootfs ? 'Paused (Repair)' : 'Paused (Debug)';
return 'Paused';
} else if (app.runState === 'running') {
if (!app.health) return 'Starting...'; // no data yet
if (app.health === HSTATES.HEALTHY) return 'Running';