Pensionierung als Eigenschaft der Person: Treiber, Tests, Spezifikation 0.35
Deploy App / deploy (push) Successful in 1m57s

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-26 13:52:40 +02:00
parent 1865db5de7
commit 0f656f4070
6 changed files with 675 additions and 37 deletions
+2 -2
View File
@@ -200,14 +200,14 @@ export function SensitivityDialog({
label="tief"
value={dr.low}
suffix={suffix}
step={d.unit === "delta_years" ? 1 : 0.1}
step={d.unit === "delta_years" || d.unit === "delta_months" ? 1 : 0.1}
onChange={(v) => setDraft(d.id, { low: v })}
/>
<RequiredNumberField
label="hoch"
value={dr.high}
suffix={suffix}
step={d.unit === "delta_years" ? 1 : 0.1}
step={d.unit === "delta_years" || d.unit === "delta_months" ? 1 : 0.1}
onChange={(v) => setDraft(d.id, { high: v })}
/>
</div>