We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dde2342 commit 30e1224Copy full SHA for 30e1224
frontend/src/features/crawl-workflows/workflow-editor.ts
@@ -2306,7 +2306,9 @@ https://archiveweb.page/images/${"logo.svg"}`}
2306
2307
if (
2308
key === "Enter" &&
2309
- this.progressState!.activeTab !== STEPS[STEPS.length - 1]
+ this.progressState!.activeTab !== STEPS[STEPS.length - 1] &&
2310
+ // Prevent places where Enter is valid from being stopped
2311
+ !["TEXTAREA", "SL-TEXTAREA"].includes(el.tagName)
2312
) {
2313
// Prevent submission by "Enter" keypress if not on last tab
2314
event.preventDefault();
0 commit comments