WEB APP: Панель "Графики проектов" - отключена прокрутка в контейнере таблицы

This commit is contained in:
Mikhail Chechnev 2024-04-10 17:08:49 +03:00
parent 2d76f0cafc
commit 604284ebff
2 changed files with 2 additions and 0 deletions

View File

@ -85,6 +85,7 @@ export const dataCellRender = ({ row, columnDef, pOnlineShowDocument }) => {
cellProps: { title: row[columnDef.name] },
cellStyle: {
padding: "2px",
paddingLeft: "10px",
maxWidth: "300px",
textOverflow: "ellipsis",
overflow: "hidden",

View File

@ -72,6 +72,7 @@ const PrjGraph = () => {
reloading={dataGrid.reload}
dataCellRender={prms => dataCellRender({ ...prms, pOnlineShowDocument })}
groupCellRender={prms => groupCellRender({ ...prms, pOnlineShowDocument })}
containerComponentProps={{ elevation: 6, sx: { overflowX: "visible" } }}
/>
) : null}
</Box>