mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-09 00:00:01 +01:00
bug fix
This commit is contained in:
parent
c6d2f0caa6
commit
3a0d98b1a4
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue