From 3eb5345b07a9bd20632cd08b45171460fdc2a573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9E=D1=81=D1=8C=D0=BC=D0=B0=D0=BA=D0=BE=D0=B2=20=D0=94?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=81?= Date: Fri, 22 Nov 2019 13:25:55 +0300 Subject: [PATCH] column width fix --- .../components/TrafficLight/TrafficLight.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/webparts/summaryWebPart/components/TrafficLight/TrafficLight.tsx b/src/webparts/summaryWebPart/components/TrafficLight/TrafficLight.tsx index eb3fa02..995f81d 100644 --- a/src/webparts/summaryWebPart/components/TrafficLight/TrafficLight.tsx +++ b/src/webparts/summaryWebPart/components/TrafficLight/TrafficLight.tsx @@ -91,25 +91,28 @@ export default class TrafficLight extends React.Component { name: "Дата начала", fieldName: "start", minWidth: 40, - maxWidth: 60 + maxWidth: 80 }, { key: "column2", name: "Дата окончания", fieldName: "end", - minWidth: 80 + minWidth: 80, + maxWidth: 100 }, { key: "column3", name: "Срок выполнения", fieldName: "time", - minWidth: 90 + minWidth: 90, + maxWidth: 110 }, { key: "column4", name: "Всего задач", fieldName: "allTasks", minWidth: 60, + maxWidth: 80 } ]} compact={true}