From 88329c8567ad8631308abd069532a4e0e58f5c53 Mon Sep 17 00:00:00 2001 From: philippkuehn Date: Mon, 14 Jun 2021 14:14:00 +0000 Subject: [PATCH] ci: fix code style linting errors --- packages/extension-mention/src/mention.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/extension-mention/src/mention.ts b/packages/extension-mention/src/mention.ts index 18ac31da..047fe26c 100644 --- a/packages/extension-mention/src/mention.ts +++ b/packages/extension-mention/src/mention.ts @@ -67,15 +67,15 @@ export const Mention = Node.create({ parseHTML: element => { return { label: element.getAttribute('data-label'), - }; + } }, renderHTML: attributes => { if (!attributes.label) { - return {}; + return {} } return { 'data-label': attributes.label, - }; + } }, }, }