From 5e9ccd698e6c7c5d900052e0002c2f289632a9e1 Mon Sep 17 00:00:00 2001 From: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com> Date: Wed, 4 Sep 2024 09:33:04 -0400 Subject: [PATCH] HPCC-32591 ECL Watch v9 File scopes reduce Logical Name width reduces the minimum width of the Logical Name column in the files list when viewing by scopes Signed-off-by: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com> --- esp/src/src-react/components/Scopes.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp/src/src-react/components/Scopes.tsx b/esp/src/src-react/components/Scopes.tsx index b03b33789b7..d0edefdc3b9 100644 --- a/esp/src/src-react/components/Scopes.tsx +++ b/esp/src/src-react/components/Scopes.tsx @@ -161,7 +161,7 @@ export const Scopes: React.FunctionComponent = ({ } }, Name: { - label: nlsHPCC.LogicalName, width: 600, + label: nlsHPCC.LogicalName, width: 180, formatter: (_, row) => { let name = row.Name?.split("::").pop(); let url = `#/files/${row.NodeGroup ? row.NodeGroup + "/" : ""}${[].concat(".", scopePath, name).join("::")}`;