mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
fix(frontend): remove parenthesis around •
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 <philip.molares@udo.edu>
This commit is contained in:
parent
340adbe69a
commit
757345d318
1 changed files with 1 additions and 1 deletions
|
@ -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 (
|
||||
|
|
Loading…
Reference in a new issue