Commit 27f9fcc7 authored by davelopez's avatar davelopez
Browse files

Fix job definition object not displayed on error

`this.jobDef` was always empty in case of an error
parent 3356ef6f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -337,7 +337,7 @@ export default {
                    if (genericError) {
                        this.showError = true;
                        this.errorTitle = "Job submission failed.";
                        this.errorContent = this.jobDef;
                        this.errorContent = jobDef;
                    }
                }
            );