MULTI schema handling

This commit is contained in:
2026-06-19 20:03:23 +05:30
parent 9a80a52fd5
commit f5bc7adc37
2 changed files with 9 additions and 2 deletions

View File

@@ -62,5 +62,9 @@ export function ListCellRenderer({ field, value, displayFormat }: ListCellProps)
return <Chip label={value ? "Yes" : "No"} size="small" color={value ? "success" : "default"} />;
}
if (typeof value === "object") {
return <Typography variant="body2">{applyDisplayFormat(value, displayFormat ?? "")}</Typography>;
}
return <Typography variant="body2">{String(value)}</Typography>;
}