Skip to content

Commit 35ca295

Browse files
committed
fix(settings/appearance): font size can't be typed out properly (closes #7740)
1 parent cacc4ad commit 35ca295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/client/src/widgets/type_widgets/options/appearance.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ function Font({ title, fontFamilyOption, fontSizeOption }: { title: string, font
203203
<FormTextBoxWithUnit
204204
name="tree-font-size"
205205
type="number" min={50} max={200} step={10}
206-
currentValue={fontSize} onChange={setFontSize}
206+
currentValue={fontSize} onBlur={setFontSize}
207207
unit={t("units.percentage")}
208208
/>
209209
</FormGroup>

0 commit comments

Comments
 (0)