BenutzerProfil

This commit is contained in:
Ashikagi
2026-03-23 21:38:11 +01:00
parent f5338ea3b2
commit cd77f88d96
22 changed files with 1145 additions and 109 deletions

View File

@@ -49,6 +49,7 @@ const PatList = ({
assessments,
overview,
assessmentShareTokens = {},
testsVisible = true,
onCreate,
onEdit,
onDelete,
@@ -395,8 +396,12 @@ const PatList = ({
{assessment.patType}
</span>
{hasShare && (
<span className="px-3 py-1 rounded-full text-xs font-semibold bg-sky-100 text-sky-800 dark:bg-sky-900/40 dark:text-sky-200">
Freigabe aktiv
<span className={`px-3 py-1 rounded-full text-xs font-semibold ${
testsVisible
? 'bg-sky-100 text-sky-800 dark:bg-sky-900/40 dark:text-sky-200'
: 'bg-amber-100 text-amber-800 dark:bg-amber-900/40 dark:text-amber-200'
}`}>
{testsVisible ? 'Freigabe aktiv' : 'Freigabe pausiert'}
</span>
)}
{assessment.isFinalized && (