diff --git a/src/common/table.js b/src/common/table.js
index 6ffd303..b4edea3 100644
--- a/src/common/table.js
+++ b/src/common/table.js
@@ -63,7 +63,7 @@ class CustomTable extends Component {
let cell = [];
if (content != null) {
- content = content.toString();
+ //content = content.toString();
// check if cell should be a link
const linkKey = child.props.linkKey;
@@ -79,7 +79,7 @@ class CustomTable extends Component {
// add label to content
const labelKey = child.props.labelKey;
if (labelKey && data[labelKey] != null) {
- var labelContent = data[labelKey];
+ let labelContent = data[labelKey];
if (child.props.labelModifier) {
labelContent = child.props.labelModifier(labelContent, data);
@@ -90,7 +90,7 @@ class CustomTable extends Component {
cell.push(