From 8203561dd4f0906128ca3e1331ddc3b6d9e977cc Mon Sep 17 00:00:00 2001 From: Pavel Gnedov Date: Tue, 20 Jun 2023 05:53:50 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=BE=D0=B1=D0=B5=D0=BB=D1=8B=20?= =?UTF-8?q?=D0=BC=D0=B5=D0=B6=D0=B4=D1=83=20=D1=82=D0=B5=D0=B3=D0=B0=D0=BC?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/misc-components/tag.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/src/misc-components/tag.tsx b/frontend/src/misc-components/tag.tsx index 5d3d606..452dff9 100644 --- a/frontend/src/misc-components/tag.tsx +++ b/frontend/src/misc-components/tag.tsx @@ -10,8 +10,11 @@ export type Props = { export const Tag = (props: Props): JSX.Element => { const inlineStyle = getStyleObjectFromString(props.style || ''); return ( - - {props.tag} - + <> + + + {props.tag} + + ); } \ No newline at end of file