diff --git a/CHANGELOG.md b/CHANGELOG.md index 37ecbc295..e803fe3e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Release Candidate +### Bugfixes + +- Change const variable customCellStyle to let variable in DataTable (INDIGO Sprint 221031, [!374](https://github.com/TeskaLabs/asab-webui/pull/374)) + ## v22.42 ### Refactoring diff --git a/src/components/DataTable/Table.js b/src/components/DataTable/Table.js index f66971bed..6046f05f5 100644 --- a/src/components/DataTable/Table.js +++ b/src/components/DataTable/Table.js @@ -16,7 +16,7 @@ const TableCell = ({ if (!obj) return - let cell, icon, customCellStyle; - const textLinkStyle = { + let textLinkStyle = { whiteSpace: "nowrap", marginBottom: 0 }