diff --git a/src/ui/pages/component/common/DataitemsTable.jsx b/src/ui/pages/component/common/DataitemsTable.jsx index 3e10a06fd..f97461084 100644 --- a/src/ui/pages/component/common/DataitemsTable.jsx +++ b/src/ui/pages/component/common/DataitemsTable.jsx @@ -102,7 +102,7 @@ useEffect(() => { align: "center", customHeadLabelRender: customColumnHead, customBodyRender: (value) => { - if ((key == "metadata_json" || key == "prediction_json"|| key == "ocr_prediction_json"|| key == "transcribed_json"|| key == "draft_data_json" || key == "ocr_transcribed_json") && value !== null ) { + if ((key == "metadata_json" || key == "prediction_json"|| key == "ocr_prediction_json"|| key == "transcribed_json"|| key == "draft_data_json" || key == "ocr_transcribed_json" || key == "bboxes_relation_json") && value !== null ) { const data = JSON.stringify(value) const metadata = data.replace(/\\/g, ""); return metadata;