Closed2

Vertex AI Agent BuilderでIME変換中のEnterで送信されてしまう

danishidanishi

Vertex AI Agent Builderで作った検索アプリのヴィジェットやDialogflow CXで作ったチャットUIのヴィジェット、果てはVertex AI Agent Builderの画面自体でも、IME変換中のEnterで入力中の日本語が送信されてしまう。

danishidanishi

https://tech.classi.jp/entry/2024/04/23/183000

こちらの記事に対処法あり。

document.addEventListener('keydown', function(event) {
    if ((event.key === 'Enter' && event.isComposing) || event.keyCode === 229) {
        event.stopPropagation();
    }
},{capture: true});

ウィジェットを埋め込む際に一緒に仕込むことで回避できた。

このスクラップは3ヶ月前にクローズされました