From 014972a0c0724f434ce51cac178be95950229776 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Tue, 3 Sep 2019 16:15:32 +0200 Subject: [PATCH] :shirt: Fix lint issue --- packages/editor-ui/src/components/NodeSettings.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/editor-ui/src/components/NodeSettings.vue b/packages/editor-ui/src/components/NodeSettings.vue index 8dae46ad0..8a6f49af3 100644 --- a/packages/editor-ui/src/components/NodeSettings.vue +++ b/packages/editor-ui/src/components/NodeSettings.vue @@ -89,8 +89,8 @@ export default mixins( return null; }, nodeTypeDescription (): string { - if (this.nodeType.description) { - return this.nodeType.description; + if (this.nodeType!.description) { + return this.nodeType!.description; } else { return 'No description found'; }