From 6cc6bf9a79b780f16da7ee99704d57014a2c2cbf Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Tue, 25 Aug 2026 21:29:08 +0100 Subject: [PATCH] Add treeSelect column to ObjectChildTable with default width - Updated ObjectChildTable to include a new 'treeSelect' column with a default width of 200, enhancing the table's data representation capabilities. --- src/components/Dashboard/common/ObjectChildTable.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Dashboard/common/ObjectChildTable.jsx b/src/components/Dashboard/common/ObjectChildTable.jsx index 46cef44d..ceafe2d7 100644 --- a/src/components/Dashboard/common/ObjectChildTable.jsx +++ b/src/components/Dashboard/common/ObjectChildTable.jsx @@ -17,7 +17,8 @@ const DEFAULT_COLUMN_WIDTHS = { state: 200, id: 180, bool: 120, - tags: 200 + tags: 200, + treeSelect: 200 } const getDefaultWidth = (type) => {