diff --git a/src/lib/src/editor/editor.component.ts b/src/lib/src/editor/editor.component.ts index 03b2c70..2fce452 100644 --- a/src/lib/src/editor/editor.component.ts +++ b/src/lib/src/editor/editor.component.ts @@ -868,6 +868,12 @@ export class EditorComponent implements OnInit, OnDestroy { } this.graphToTextConversionCompleted.next(); return this.validateContent(); + }) + .catch(error => { + // Validation may reveal why the graph couldn't be + // converted so let it run + this.graphToTextConversionCompleted.next(); + return this.validateContent(); }); } else { this.graphToTextConversionCompleted.next();