mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-17 10:46:16 +01:00
truncate device name in smart table (#1416)
This commit is contained in:
@@ -118,7 +118,9 @@ export const columns: ColumnDef<DiskInfo>[] = [
|
|||||||
sortingFn: (a, b) => a.original.device.localeCompare(b.original.device),
|
sortingFn: (a, b) => a.original.device.localeCompare(b.original.device),
|
||||||
header: ({ column }) => <HeaderButton column={column} name={t`Device`} Icon={HardDrive} />,
|
header: ({ column }) => <HeaderButton column={column} name={t`Device`} Icon={HardDrive} />,
|
||||||
cell: ({ row }) => (
|
cell: ({ row }) => (
|
||||||
<div className="font-medium ms-1.5">{row.getValue("device")}</div>
|
<div className="font-medium max-w-50 truncate ms-1.5" title={row.getValue("device")}>
|
||||||
|
{row.getValue("device")}
|
||||||
|
</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user