Skip to content

Commit 01da4b8

Browse files
authored
fix: improve table row key and update nvt preference for better text wrapping (#4257)
1 parent 3530774 commit 01da4b8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/web/components/table/row.jsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55

6-
import React from 'react';
7-
86
import PropTypes from '../../utils/proptypes';
97

108
const TableRow = ({items = [], children, ...other}) => {
119
const data = items.map((item, i) => {
12-
return <th key={i}>{item}</th>;
10+
return (
11+
<th key={item.id && item.name ? `${item.id}-${item.name}` : i}>{item}</th>
12+
);
1313
});
1414
return (
1515
<tr {...other}>
@@ -20,6 +20,7 @@ const TableRow = ({items = [], children, ...other}) => {
2020
};
2121

2222
TableRow.propTypes = {
23+
children: PropTypes.node,
2324
items: PropTypes.array,
2425
};
2526

src/web/pages/scanconfigs/nvtpreferences.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import PropTypes from 'web/utils/proptypes';
1919

2020
const StyledTableData = styled(TableData)`
2121
overflow-wrap: break-word;
22+
white-space: normal;
23+
word-break: break-word;
2224
`;
2325

2426
const shouldComponentUpdate = (props, nextProps) =>

0 commit comments

Comments
 (0)