From 757345d31843bb18069185440e9115b99c38e6b2 Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Sun, 7 May 2023 22:22:05 +0200 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20remove=20parenthesis=20around?= =?UTF-8?q?=20=E2=80=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was the way it was in HedgeDoc 1. It was deemed to be better than the parenthesis version in a debug session. Signed-off-by: Philip Molares --- .../head-meta-properties/note-and-app-title-head.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/editor-page/head-meta-properties/note-and-app-title-head.tsx b/frontend/src/components/editor-page/head-meta-properties/note-and-app-title-head.tsx index 3de403c28..bc026d982 100644 --- a/frontend/src/components/editor-page/head-meta-properties/note-and-app-title-head.tsx +++ b/frontend/src/components/editor-page/head-meta-properties/note-and-app-title-head.tsx @@ -18,7 +18,7 @@ export const NoteAndAppTitleHead: React.FC = () => { const showDot = useHasMarkdownContentBeenChangedInBackground() const noteAndAppTitle = useMemo(() => { - return (showDot ? '(•) ' : '') + noteTitle + ' - ' + appTitle + return (showDot ? '• ' : '') + noteTitle + ' - ' + appTitle }, [appTitle, noteTitle, showDot]) return (