project/frontend/src/components/KPIForm.tsx aktualisiert

Unicode-Zeichen! anpassung
pull/94/head
Abdulrahman Dabbagh 2025-06-29 11:22:01 +02:00
parent 386a2c4458
commit 8e86ecc91b
1 changed files with 3 additions and 3 deletions

View File

@ -208,7 +208,7 @@ export function KPIForm({ mode, initialData, onSave, onCancel, loading = false,
<TextField
fullWidth
label="Name *"
placeholder="z.B. IRR"
placeholder="z.B. IRR"
value={formData.name || ''}
onChange={(e) => updateField('name', e.target.value)}
sx={{ mb: 2 }}
@ -306,7 +306,7 @@ export function KPIForm({ mode, initialData, onSave, onCancel, loading = false,
fullWidth
multiline
label={`Beispielsatz ${idx + 1}`}
placeholder="z.B. Die IRR beträgt 7,8 %"
placeholder="z.B. Die IRR beträgt 7,8 %"
value={ex.sentence}
onChange={(e) => updateExample(idx, 'sentence', e.target.value)}
required
@ -316,7 +316,7 @@ export function KPIForm({ mode, initialData, onSave, onCancel, loading = false,
<TextField
fullWidth
label="Bezeichneter Wert im Satz"
placeholder="z.B. 7,8 %"
placeholder="z.B. 7,8 %"
value={ex.value}
onChange={(e) => updateExample(idx, 'value', e.target.value)}
required