diff options
author | Einat Vinouze <einat.vinouze@intl.att.com> | 2020-05-18 10:06:29 +0300 |
---|---|---|
committer | Einat Vinouze <einat.vinouze@intl.att.com> | 2020-05-18 11:28:43 +0300 |
commit | aaec5296d2fa63828c320e4a3fb1e5ed0e168de2 (patch) | |
tree | 09ec001b9ee7f7b10f45c51563e99e261192fb6c /vid-webpack-master/src/app/instantiationStatus/instantiationStatus.component.service.ts | |
parent | a1891033584c124bc6e58676f9109b182707e3e8 (diff) |
Add pause icon to the instantiationStatus table
Issue-ID: VID-821
Signed-off-by: Einat Vinouze <einat.vinouze@intl.att.com>
Change-Id: Idbe53b0d0f3515e5c5321f4631ff45ac459377c6
Signed-off-by: Einat Vinouze <einat.vinouze@intl.att.com>
Diffstat (limited to 'vid-webpack-master/src/app/instantiationStatus/instantiationStatus.component.service.ts')
-rw-r--r-- | vid-webpack-master/src/app/instantiationStatus/instantiationStatus.component.service.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vid-webpack-master/src/app/instantiationStatus/instantiationStatus.component.service.ts b/vid-webpack-master/src/app/instantiationStatus/instantiationStatus.component.service.ts index a6445193c..e59c16a3a 100644 --- a/vid-webpack-master/src/app/instantiationStatus/instantiationStatus.component.service.ts +++ b/vid-webpack-master/src/app/instantiationStatus/instantiationStatus.component.service.ts @@ -22,6 +22,7 @@ export let X_O : string = "x-circle-o"; export let SUCCESS_CIRCLE : string = "success-circle-o"; export let STOPPED : string = "stop"; export let COMPLETED_WITH_ERRORS : string = "success_with_warning"; +export let PAUSE_UPON_COMPLETION : string = "stopped-upon-success"; export let UNKNOWN : string = "question-mark-circle-o"; @@ -168,7 +169,8 @@ export class InstantiationStatusComponentService { return new ServiceStatus(STOPPED, 'error', 'Stopped: Due to previous failure, will not be instantiated.'); case 'COMPLETED_WITH_ERRORS' : return new ServiceStatus(COMPLETED_WITH_ERRORS, 'success', 'Completed with errors: some of the planned actions where successfully committed while other have not.\n Open the service to check it out.'); - + case 'COMPLETED_AND_PAUSED' : + return new ServiceStatus(PAUSE_UPON_COMPLETION, 'default','Pause upon completion. you may resume the instantiation.\n Open the service to check it out.' ); default: return new ServiceStatus(UNKNOWN, 'primary', `Unexpected status: "${status}"`); } |