Skip to content

Commit 86c1eba

Browse files
committed
Fix: Pass openEditNvtDetailsDialog to Action component in scan config Row
Fix handling the openEditNvtDetailsDialog click handler in scan config Row component. First of all it is not required and second it wasn't passed to the action component which means it couldn't be used in the row action.
1 parent 91b9ca2 commit 86c1eba

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/web/pages/scanconfigs/Row.jsx

+7-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import Trend from 'web/pages/scanconfigs/Trend';
1919
import PropTypes from 'web/utils/PropTypes';
2020
import {na} from 'web/utils/Render';
2121

22-
2322
const ScanConfigActions = withEntitiesActions(
2423
({
2524
entity,
@@ -120,16 +119,20 @@ const ScanConfigRow = ({
120119
trend={entity.nvts.trend}
121120
/>
122121
</TableData>
123-
<ActionsComponent {...props} entity={entity} />
122+
<ActionsComponent
123+
{...props}
124+
entity={entity}
125+
openEditNvtDetailsDialog={openEditNvtDetailsDialog}
126+
/>
124127
</TableRow>
125128
);
126129

127130
ScanConfigRow.propTypes = {
128131
actionsComponent: PropTypes.component,
129132
entity: PropTypes.model.isRequired,
130133
links: PropTypes.bool,
131-
onToggleDetailsClick: PropTypes.func.isRequired,
132-
openEditNvtDetailsDialog: PropTypes.func.isRequired,
134+
onToggleDetailsClick: PropTypes.func,
135+
openEditNvtDetailsDialog: PropTypes.func,
133136
};
134137

135138
export default ScanConfigRow;

0 commit comments

Comments
 (0)