format
All checks were successful
delpoy / build-and-deploy (push) Successful in 5m13s

This commit is contained in:
2024-10-19 13:53:57 +02:00
parent dbe9810b90
commit 18135a0816
6 changed files with 11 additions and 11 deletions

View File

@ -55,8 +55,8 @@
];
let pageTitleSuffix =
tabs.find((t) => $page.url.pathname === t.path)?.name ??
$page.url.pathname === `${env.PUBLIC_BASE_PATH}/admin/login`
(tabs.find((t) => $page.url.pathname === t.path)?.name ??
$page.url.pathname === `${env.PUBLIC_BASE_PATH}/admin/login`)
? 'Login '
: null;
</script>

View File

@ -177,10 +177,10 @@
{report.status === 'none'
? 'Unbearbeitet'
: report.status === 'review'
? 'In Bearbeitung'
: report.status === 'reviewed'
? 'Bearbeitet'
: ''}
? 'In Bearbeitung'
: report.status === 'reviewed'
? 'Bearbeitet'
: ''}
</td>
<td>{report.draft ? 'Entwurf' : 'Erstellt'}</td>
</tr>