From 0f8b1c729c19576cb77c4573154b20cd9c859aa2 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 18 Jun 2024 19:50:55 -0300 Subject: [PATCH] Adjust initial width --- src/frontend/src/components/dataOutputComponent/index.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/frontend/src/components/dataOutputComponent/index.tsx b/src/frontend/src/components/dataOutputComponent/index.tsx index a670a40e7..d9af5ac05 100644 --- a/src/frontend/src/components/dataOutputComponent/index.tsx +++ b/src/frontend/src/components/dataOutputComponent/index.tsx @@ -20,16 +20,11 @@ function DataOutputComponent({ const columnDefs = columns.map((col, idx) => ({ ...col, resizable: true, - maxWidth: 400, + initialWidth: 150, })) as (ColDef | ColGroupDef)[]; return (