From a3a33c9d1cfcdd50c659e8b20456b50802e4b12b Mon Sep 17 00:00:00 2001 From: Nikola Stojanovic <68916411+dzonidoo@users.noreply.github.com> Date: Tue, 7 Nov 2023 14:16:07 +0100 Subject: [PATCH] styling attached text (#4348) --- .../core/editor3/components/links/LinkDecorator.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/core/editor3/components/links/LinkDecorator.tsx b/scripts/core/editor3/components/links/LinkDecorator.tsx index 38f6f16f31..431287366b 100644 --- a/scripts/core/editor3/components/links/LinkDecorator.tsx +++ b/scripts/core/editor3/components/links/LinkDecorator.tsx @@ -76,7 +76,15 @@ class LinkComponent extends React.Component { render() { if (this.link.attachment) { - return {this.props.children}; + return ( + + {this.props.children} + + ); } return {this.props.children};