From bf5be9b4e5e2f9b043463e6aff3fb8a318fce03b Mon Sep 17 00:00:00 2001 From: imsfc Date: Sun, 22 Sep 2024 12:12:10 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=A1=A8=E6=A0=BC=E5=88=97?= =?UTF-8?q?=E5=AE=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ModularFactoryDrawerContent.tsx | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/src/components/ModularFactoryDrawerContent.tsx b/src/components/ModularFactoryDrawerContent.tsx index f40a568..8c4fd23 100644 --- a/src/components/ModularFactoryDrawerContent.tsx +++ b/src/components/ModularFactoryDrawerContent.tsx @@ -73,7 +73,8 @@ function createColumns({ { title: t('targetItem'), key: 'targetItem', - minWidth: 160, + minWidth: 120, + width: 160, render(row) { return ( { const assemblyLineComputed = modularFactoryList.assemblyLineComputedList[row.id] @@ -168,6 +171,7 @@ function createColumns({ title: t('power'), key: 'power', minWidth: 80, + width: 120, render: (row) => { const assemblyLineComputed = modularFactoryList.assemblyLineComputedList[row.id] @@ -201,7 +205,8 @@ function createColumns({ { title: t('inputs'), key: 'inputs', - minWidth: 160, + minWidth: 120, + width: 160, render: (row) => { const assemblyLineComputed = modularFactoryList.assemblyLineComputedList[row.id] @@ -218,7 +223,8 @@ function createColumns({ { title: t('outputs'), key: 'outputs', - minWidth: 160, + minWidth: 120, + width: 160, render: (row) => { const assemblyLineComputed = modularFactoryList.assemblyLineComputedList[row.id]