main field show in imported
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user