mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 03:06:31 -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 showDot = useHasMarkdownContentBeenChangedInBackground()
|
||||||
|
|
||||||
const noteAndAppTitle = useMemo(() => {
|
const noteAndAppTitle = useMemo(() => {
|
||||||
return (showDot ? '(•) ' : '') + noteTitle + ' - ' + appTitle
|
return (showDot ? '• ' : '') + noteTitle + ' - ' + appTitle
|
||||||
}, [appTitle, noteTitle, showDot])
|
}, [appTitle, noteTitle, showDot])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue