From a8b97f1b1f989b47ff2d0bda6954fc3bf1f1338e Mon Sep 17 00:00:00 2001 From: vashjs Date: Mon, 26 Feb 2024 12:59:57 +0100 Subject: [PATCH] remove redundant condition --- src/QueryBuilder/ResultViewer/TableCell/DynamicTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QueryBuilder/ResultViewer/TableCell/DynamicTable.js b/src/QueryBuilder/ResultViewer/TableCell/DynamicTable.js index f895b403..918c65dc 100644 --- a/src/QueryBuilder/ResultViewer/TableCell/DynamicTable.js +++ b/src/QueryBuilder/ResultViewer/TableCell/DynamicTable.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import css from './DynamicTable.css'; export const DynamicTable = ({ properties, values }) => { - const tableBodyRows = JSON.parse(values || null); + const tableBodyRows = JSON.parse(values); return (