From 12569438f98d84628a6c5c8f96e779beb05c33c5 Mon Sep 17 00:00:00 2001 From: Mutasem Date: Thu, 4 Nov 2021 23:17:35 +0100 Subject: [PATCH] fix build issue --- packages/editor-ui/src/components/mixins/nodeBase.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/editor-ui/src/components/mixins/nodeBase.ts b/packages/editor-ui/src/components/mixins/nodeBase.ts index c285645f01..6f0b7a3fac 100644 --- a/packages/editor-ui/src/components/mixins/nodeBase.ts +++ b/packages/editor-ui/src/components/mixins/nodeBase.ts @@ -76,7 +76,7 @@ const getInputNameOverlay = (label: string) => ([ { id: CanvasHelpers.OVERLAY_INPUT_NAME_LABEL, location: CanvasHelpers.OVERLAY_INPUT_NAME_LABEL_POSITION, - label: label, + label, cssClass: 'node-input-endpoint-label', visible: true, }, @@ -93,7 +93,7 @@ const getOutputNameOverlay = (label: string) => ([ { id: CanvasHelpers.OVERLAY_OUTPUT_NAME_LABEL, location: [1.9, 0.5], - label: label, + label, cssClass: 'node-output-endpoint-label', visible: true, },