From f4e264c166a004949491ddb493807f338a83a6e6 Mon Sep 17 00:00:00 2001 From: Sergii Kabashniuk Date: Sun, 2 Jun 2019 10:57:41 +0300 Subject: [PATCH] Make workspace start errors more Che7 friendly Signed-off-by: Sergii Kabashniuk --- .../app/factories/load-factory/load-factory.controller.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard/src/app/factories/load-factory/load-factory.controller.ts b/dashboard/src/app/factories/load-factory/load-factory.controller.ts index 12eb3682e36..a6bf8375117 100644 --- a/dashboard/src/app/factories/load-factory/load-factory.controller.ts +++ b/dashboard/src/app/factories/load-factory/load-factory.controller.ts @@ -420,9 +420,9 @@ export class LoadFactoryController { // need to show the error this.$mdDialog.show( this.$mdDialog.alert() - .title('Error when starting agent') - .content('Unable to start workspace agent. Error when trying to start the workspace agent: ' + message.error) - .ariaLabel('Workspace agent start') + .title('Error when starting workspace') + .content('Unable to start workspace. Error when trying to start the workspace: ' + message.error) + .ariaLabel('Workspace start') .ok('OK') ); this.getLoadingSteps()[this.getCurrentProgressStep()].hasError = true;