Fix env form grid class so mode refresh keeps two-column layout.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-07-30 09:28:16 +08:00
parent fdbbde08df
commit fa7ff739a0
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -330,7 +330,7 @@
panel.appendChild(hint);
}
const grid = document.createElement("div");
grid.className = "env-config-grid";
grid.className = "env-form-grid";
(group.fields || []).forEach((field) => grid.appendChild(renderEnvFieldRow(field)));
panel.appendChild(grid);
panelsWrap.appendChild(panel);