fix(settings/appearance): font size can't be typed out properly (closes #7740)

This commit is contained in:
Elian Doran 2025-11-15 21:38:17 +02:00
parent cacc4ad01d
commit 35ca295d48
No known key found for this signature in database

View File

@ -203,7 +203,7 @@ function Font({ title, fontFamilyOption, fontSizeOption }: { title: string, font
<FormTextBoxWithUnit <FormTextBoxWithUnit
name="tree-font-size" name="tree-font-size"
type="number" min={50} max={200} step={10} type="number" min={50} max={200} step={10}
currentValue={fontSize} onChange={setFontSize} currentValue={fontSize} onBlur={setFontSize}
unit={t("units.percentage")} unit={t("units.percentage")}
/> />
</FormGroup> </FormGroup>