diff --git a/plugins/kanban/dashboard/dist/index.js b/plugins/kanban/dashboard/dist/index.js index c65d390541..62a0a2e6f1 100644 --- a/plugins/kanban/dashboard/dist/index.js +++ b/plugins/kanban/dashboard/dist/index.js @@ -1760,6 +1760,7 @@ value: title, onChange: function (e) { setTitle(e.target.value); }, onKeyDown: function (e) { + if (e.key === "Enter" && !e.shiftKey) { e.preventDefault(); submit(); } if (e.key === "Escape") props.onCancel(); }, placeholder: props.columnName === "triage"