From 3a0d98b1a4c92bbed01913f46c1d97f4cbb0a0a9 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 16 May 2019 01:13:10 +0200 Subject: [PATCH] bug fix --- src/components/table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/table.js b/src/components/table.js index 4fa2fb9..b81b63a 100644 --- a/src/components/table.js +++ b/src/components/table.js @@ -74,7 +74,7 @@ class CustomTable extends Component { if (linkKey && data[linkKey] != null) { cell.push({content}); } else if (child.props.clickable) { - cell.push( child.props.onClick(index)}>{content}); + cell.push( child.props.onClick(index)}>{content}); } else { cell.push(content); }