mirror of
https://github.com/zadam/trilium.git
synced 2025-11-16 21:44:31 +01:00
fix(settings/appearance): font size can't be typed out properly (closes #7740)
This commit is contained in:
parent
cacc4ad01d
commit
35ca295d48
@ -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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user