Skip to content
Snippets Groups Projects
Commit 1ebc64cc authored by Chris Hines's avatar Chris Hines
Browse files

still errors

parent 18d704ea
No related branches found
No related tags found
4 merge requests!106if stat fails, display the error instead of immediately refreshing...,!99Dev,!49Dev,!46Dev
Pipeline #10248 passed
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment