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 a1c055b commit d4e6a29Copy full SHA for d4e6a29
1 file changed
apps/webapp/app/components/runs/v3/RunTagInput.tsx
@@ -68,6 +68,8 @@ export function RunTagInput({
68
addTag(inputValue);
69
} else if (e.key === "Backspace" && inputValue === "" && tags.length > 0) {
70
removeTag(tags[tags.length - 1]);
71
+ } else if (e.key === ",") {
72
+ e.preventDefault();
73
}
74
},
75
[inputValue, addTag, removeTag, tags]
0 commit comments