From b3f418323c06ebdfba463a135ba7ade0c9d90a16 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Mon, 10 Nov 2025 20:11:23 -0700 Subject: [PATCH] Adjusted device list default widths in table. --- .../web-interface/src/Devices/Device_List.jsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Data/Engine/web-interface/src/Devices/Device_List.jsx b/Data/Engine/web-interface/src/Devices/Device_List.jsx index c1aa8ff3..202c758d 100644 --- a/Data/Engine/web-interface/src/Devices/Device_List.jsx +++ b/Data/Engine/web-interface/src/Devices/Device_List.jsx @@ -1335,8 +1335,8 @@ export default function DeviceList({ field: "site", headerName: col.label, valueGetter: (params) => params.data?.site || "Not Configured", - width: 140, - minWidth: 140, + width: 100, + minWidth: 100, flex: 0, }; case "hostname": @@ -1344,8 +1344,8 @@ export default function DeviceList({ field: "hostname", headerName: col.label, cellRenderer: hostnameCellRenderer, - width: 210, - minWidth: 210, + width: 150, + minWidth: 150, flex: 0, }; case "description": @@ -1365,16 +1365,16 @@ export default function DeviceList({ return { field: "lastUser", headerName: col.label, - width: 220, - minWidth: 220, + width: 200, + minWidth: 200, flex: 0, }; case "type": return { field: "type", headerName: col.label, - width: 170, - minWidth: 170, + width: 150, + minWidth: 150, flex: 0, }; case "os":