feat(ui): add keyboard navigation for LoRA strength inputs, #432

This commit is contained in:
Will Miao
2025-10-18 08:36:10 +08:00
parent cdf21e813c
commit bf3d706bf4
2 changed files with 112 additions and 33 deletions

View File

@@ -220,6 +220,7 @@ export function createExpandButton(isExpanded, onClick) {
const button = document.createElement("button");
button.className = "comfy-lora-expand-button";
button.type = "button";
button.tabIndex = -1;
Object.assign(button.style, {
width: "20px",