Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
renderRow = ({ profile }) => {
return (
{profile[this.state.column2Show]}
{profile.ltv}
)
}
checked={this.state.selectedRows.includes(target.id)}
id={target.target_url}
onChange={e => this.handleCheckbox(e, target)}
margin={10}
/>
{" "}
{target.target_url} ({target.host_ip})
{this.renderSeverity(target)}
this.renderRowMenu(target)}
position={Position.BOTTOM_RIGHT}
data-test="actionsPopover"
>
);
};