mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-19 05:46:04 +00:00
update
This commit is contained in:
@@ -229,7 +229,11 @@ export const CellValue = ({ value, property }) => {
|
||||
}
|
||||
|
||||
if (value !== null && typeof value !== "undefined") {
|
||||
return <span className={twMerge("line-clamp-2", value_mono && "font-mono")}>{value}</span>;
|
||||
return (
|
||||
<span className={twMerge("line-clamp-2", value_mono && "font-mono break-all")}>
|
||||
{value}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
||||
return <span className="opacity-10 font-mono">null</span>;
|
||||
|
||||
Reference in New Issue
Block a user