Quellcode durchsuchen

chore: format site title #268

vben vor 4 Jahren
Ursprung
Commit
1f96eaef99
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/utils/index.ts

+ 1 - 1
src/utils/index.ts

@@ -124,7 +124,7 @@ function setDocumentTitle(title: string) {
 
 export function setTitle(title: string, appTitle?: string) {
   if (title) {
-    const _title = title ? ` ${title}-${appTitle} ` : `${appTitle}`;
+    const _title = title ? ` ${title} - ${appTitle} ` : `${appTitle}`;
     setDocumentTitle(_title);
   }
 }