{err && !loading ? (
{err}
) : null}
{tab === 'library' && (
<>
setQ(e.target.value)}
placeholder="Name, Tag, © …"
disabled={busy}
/>
{loading ?
Laden…
: null}
{items.map((it) => {
const id = it.id
const selected = selectedAssetId === id
const label = it.original_filename || it.copyright_notice || `Archiv #${id}`
const linked = assetToExerciseMedia.has(Number(id))
return (
)
})}
{!loading && items.length === 0 ? (
Keine Treffer — Suche anpassen oder „Neu hochladen".
) : null}
>
)}
{tab === 'upload' && (
<>
{
const f = e.target.files?.[0] || null
setUploadFile(f)
}}
/>
{uploadFile ? uploadFile.name : 'Keine Datei ausgewählt'}
setUploadTitle(e.target.value)}
disabled={busy}
/>
{/* P-06 Rechte-Erklärung */}
Rechte-Erklärung (VORLÄUFIG – p06-v1-conservative)
setDeclField('copyright_notice', e.target.value)}
disabled={busy} style={{ fontSize: '0.85rem' }} />
setDeclField('rights_holder_confirmed', e.target.checked)}
disabled={busy} style={{ marginTop: '3px', flexShrink: 0 }} />
{declErr && (
{declErr}
)}
>
)}