fix(ui): zmeneny text - text - v select boxu

This commit is contained in:
BOHA
2026-06-12 14:56:52 +02:00
parent 164ce54adf
commit 6f3f1c40e7
6 changed files with 7 additions and 7 deletions

View File

@@ -392,7 +392,7 @@ function EditForm(props: Props) {
value={projectId === null ? "" : String(projectId)}
onChange={(val) => setProjectId(val ? Number(val) : null)}
options={[
{ value: "", label: "— bez projektu —" },
{ value: "", label: "Vyberte projekt" },
...projects.map((p) => ({
value: String(p.id),
label: p.name,