[#7532] pause collection and fields name normalization while in IME mode

This commit is contained in:
Gani Georgiev
2026-02-17 17:29:38 +02:00
parent 3b9f2141fe
commit f6675702ea
32 changed files with 109 additions and 102 deletions

View File

@@ -456,6 +456,10 @@
placeholder={isAuth ? `eg. "users"` : `eg. "posts"`}
value={collection.name}
on:input={(e) => {
if (e.isComposing) {
return
}
collection.name = CommonHelper.slugify(e.target.value);
e.target.value = collection.name;
}}