1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-09 00:00:01 +01:00
This commit is contained in:
Steffen Vogel 2019-05-16 01:13:10 +02:00
parent c6d2f0caa6
commit 3a0d98b1a4

View file

@ -74,7 +74,7 @@ class CustomTable extends Component {
if (linkKey && data[linkKey] != null) {
cell.push(<Link to={child.props.link + data[linkKey]}>{content}</Link>);
} else if (child.props.clickable) {
cell.push(<a href={#} onClick={() => child.props.onClick(index)}>{content}</a>);
cell.push(<a href={'#'} onClick={() => child.props.onClick(index)}>{content}</a>);
} else {
cell.push(content);
}