This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/helpers/setTitle.js
kolaente 7d596a08cd
All checks were successful
continuous-integration/drone/pr Build is passing
Add page titles everywhere
2020-07-07 21:59:35 +02:00

9 lines
171 B
JavaScript

export const setTitle = title => {
if (typeof title === 'undefined' || title === '') {
document.title = 'Vikunja'
return
}
document.title = `${title} | Vikunja`
}