修复showSystemList无法通过回车进行选择的BUG

This commit is contained in:
fofolee 2025-06-11 09:28:00 +08:00
parent 724bd9e4e7
commit 2625a25584

View File

@ -520,6 +520,10 @@ document.addEventListener("DOMContentLoaded", () => {
if (dialogType === "textarea" && !e.ctrlKey) {
return;
}
// select 类型有自己的键盘处理器,不需要全局处理器处理 Enter 键
if (dialogType === "select") {
return;
}
document.getElementById("ok-btn").click();
}
});