feat(BalanceSheet|P&L): account name min-width.

This commit is contained in:
a.bouhuolia
2022-01-31 01:04:23 +02:00
parent 8d6ed9be41
commit ce223e7e2f
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ const accountNameMapper = R.curry((data, column) => {
accessor,
className: column.key,
textOverview: true,
width,
width: Math.max(width, 300),
};
});

View File

@@ -304,7 +304,7 @@ const accountNameColumn = R.curry((data, column) => {
accessor,
className: column.key,
textOverview: true,
width,
width: Math.max(width, 300),
};
});