Allow tab name 0

This commit is contained in:
shamoon 2023-09-16 15:24:24 -07:00
parent 898fb88d86
commit e663994c9b
2 changed files with 2 additions and 2 deletions

View file

@ -239,7 +239,7 @@ function Home({ initialSettings }) {
const tabs = useMemo( () => [
...new Set(
Object.keys(settings.layout ?? {}).map(
(groupName) => settings.layout[groupName]?.tab
(groupName) => settings.layout[groupName]?.tab?.toString()
).filter(group => group)
)
], [settings.layout]);