mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 04:15:25 +00:00
Merge pull request #17085 from ShirasawaSama/patch-10
fix: fix event binding for composition end in MessageInput
This commit is contained in:
commit
3d2fcef28f
1 changed files with 1 additions and 1 deletions
|
|
@ -1407,7 +1407,7 @@
|
||||||
command = getCommand();
|
command = getCommand();
|
||||||
}}
|
}}
|
||||||
on:compositionstart={() => (isComposing = true)}
|
on:compositionstart={() => (isComposing = true)}
|
||||||
oncompositionend={(e) => {
|
on:compositionend={(e) => {
|
||||||
compositionEndedAt = e.timeStamp;
|
compositionEndedAt = e.timeStamp;
|
||||||
isComposing = false;
|
isComposing = false;
|
||||||
}}
|
}}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue