From 1ebc64ccbbadb28b2eacee3bc8201b25620b810a Mon Sep 17 00:00:00 2001 From: Chris Hines <chris.hines@monash.edu> Date: Wed, 13 May 2020 10:43:08 +1000 Subject: [PATCH] still errors --- src/app/tes.service.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/tes.service.ts b/src/app/tes.service.ts index e6cb971..97c4e55 100644 --- a/src/app/tes.service.ts +++ b/src/app/tes.service.ts @@ -170,7 +170,8 @@ private addUserHealth(identity,resp) { submissionError(error: any) { if (error.status != 0) { try { - this.notifications.notify(error.error.message); + this.notifications.notify(error.error); + console.error(error); } catch { this.notifications.notify('Job Canceling failed'); console.error(error); @@ -186,7 +187,8 @@ private addUserHealth(identity,resp) { cancelError(error: any) { if (error.status != 0) { try { - this.notifications.notify(error.error.message); + this.notifications.notify(error.error); + console.error(error); } catch { this.notifications.notify('Job Canceling failed'); console.error(error); -- GitLab