Reformat timer

This commit is contained in:
Daniel Schädler 2025-03-13 14:41:42 +01:00
parent ec35269861
commit bcba2a0727
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ function FullscreenPageHeader(props) {
return (<Navbar color='light' className='mb-4 border-bottom py-0'>
<FilterDropdown {...props.filter}/>
<NavbarBrand>{props.title}</NavbarBrand>
{props.timerEnd && <div className='ml-auto'>Spielzeit: {formatTimeLeft(timeLeft)}</div>}
{props.timerEnd && <div className='ml-auto'>Spielzeit: <NavbarBrand>{formatTimeLeft(timeLeft)}</NavbarBrand></div>}
</Navbar>);
}