main field show in imported

This commit is contained in:
2026-05-14 10:14:59 +02:00
parent 6460454201
commit df075dd76a
2 changed files with 65 additions and 24 deletions
+6 -6
View File
@@ -463,13 +463,13 @@
const row = data[rowIndex];
switch (col.type) {
case "main_field":
div.innerHTML = createInputHTML(
col,
row.mainFieldValue || "",
rowIndex,
);
case "main_field": {
const val = getDetailValue(rowIndex, col.key);
div.innerHTML = createInputHTML(col, val || "", rowIndex);
break;
}
case "status": {
const st = row.status || "i";