From 1f479b20be3911425f9530a00f2594aaabcf6632 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 19 Aug 2025 20:09:56 +0300 Subject: [PATCH] chore(react/settings): use onBlur instead of onChange --- apps/client/src/widgets/type_widgets/options/other.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/type_widgets/options/other.tsx b/apps/client/src/widgets/type_widgets/options/other.tsx index 0794da7ee..0923cb62c 100644 --- a/apps/client/src/widgets/type_widgets/options/other.tsx +++ b/apps/client/src/widgets/type_widgets/options/other.tsx @@ -220,7 +220,7 @@ function HtmlImportTags() { fontFamily: "var(--monospace-font-family)" }), [])} value={parsedValue} - onChange={e => { + onBlur={e => { const tags = e.currentTarget.value .split(/[\n,\s]+/) // Split on newlines, commas, or spaces .map((tag) => tag.trim())