1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

fixed page title separator

This commit is contained in:
Fedor Katurov 2022-01-27 15:15:37 +07:00
parent 21b3bc3d77
commit 7f57c10f0c

View file

@ -1,4 +1,4 @@
/** just combinates title elements to form title of the page */
export const getPageTitle = (...props: string[]): string => {
return ['Убежище', ...props].filter(it => it.trim()).join(' / ');
return ['Убежище', ...props].filter(it => it.trim()).join(' ');
};