mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-29 02:32:18 +00:00
Fix using enter to select item (#6)
This commit is contained in:
@@ -11547,7 +11547,7 @@ LGraphNode.prototype.executeAction = function(action)
|
|||||||
dialog.close();
|
dialog.close();
|
||||||
} else if (e.keyCode == 13) {
|
} else if (e.keyCode == 13) {
|
||||||
if (selected) {
|
if (selected) {
|
||||||
select(selected.innerHTML);
|
select(unescape(selected.dataset["type"]));
|
||||||
} else if (first) {
|
} else if (first) {
|
||||||
select(first);
|
select(first);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user