diff --git a/app/components/Explorer/ExplorerBody/Views/ExplorerTableView/ExplorerTableCell.js b/app/components/Explorer/ExplorerBody/Views/ExplorerTableView/ExplorerTableCell.js index 5ef05f1..89dddde 100644 --- a/app/components/Explorer/ExplorerBody/Views/ExplorerTableView/ExplorerTableCell.js +++ b/app/components/Explorer/ExplorerBody/Views/ExplorerTableView/ExplorerTableCell.js @@ -28,15 +28,7 @@ const ExplorerTableCell = ({ return ; } else { - if (data) { - if (Object.keys(data).length) { - return '{Object ...}'; - } else { - return JSON.stringify(data); - } - } else { - return JSON.stringify(data); - } + return JSON.stringify(data); } };