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

fixed modal backdrops on safari and placeholders

This commit is contained in:
Fedor Katurov 2022-01-27 18:57:33 +07:00
parent 7f57c10f0c
commit 145b601a96
4 changed files with 10 additions and 7 deletions

View file

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