Skip to content

Commit

Permalink
fix(CODE): ADDON-56881 Fixed the line breaker issue (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbalar-splunk committed Nov 16, 2022
1 parent dbbab5d commit 28cff26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/main/webapp/components/table/CustomTableRow.jsx
Expand Up @@ -146,7 +146,7 @@ function CustomTableRow(props) {
cellHTML = rowActionsPrimaryButton(row);
} else {
cellHTML = (
<Table.Cell data-column={header.field} key={header.field}>
<Table.Cell style={{ wordBreak:'break-all' }} data-column={header.field} key={header.field}>
{headerMapping[header.field] &&
Object.prototype.hasOwnProperty.call(
headerMapping[header.field],
Expand Down

0 comments on commit 28cff26

Please sign in to comment.