From 56435098e32b53d9aab766e89d272a06c91276a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milorad=20Filipovi=C4=87?= Date: Fri, 13 May 2022 12:49:21 +0200 Subject: [PATCH] Spacing. --- packages/editor-ui/src/components/Sticky.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/Sticky.vue b/packages/editor-ui/src/components/Sticky.vue index 1be7e5c5c658f4..12d7ef7c29871f 100644 --- a/packages/editor-ui/src/components/Sticky.vue +++ b/packages/editor-ui/src/components/Sticky.vue @@ -149,7 +149,7 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext } }, onMarkdownClick ( link:HTMLAnchorElement, event: Event ) { - if( link ) { + if (link) { const isOnboardingNote = this.name === QUICKSTART_NOTE_NAME; const isWelcomeVideo = link.querySelector('img[alt="n8n quickstart video"'); const type = isOnboardingNote && isWelcomeVideo ? 'welcome_video' : isOnboardingNote && link.getAttribute('href') === '/templates' ? 'templates' : 'other';