From c557489c2d8fdeb65faf47e866dee4ae83009f01 Mon Sep 17 00:00:00 2001 From: Kartik Virendra Rajput <88619994+kartikvirendrar@users.noreply.github.com> Date: Fri, 22 Mar 2024 17:20:50 +0530 Subject: [PATCH] Update AnnotationProject.jsx --- src/ui/pages/container/Workspace/AnnotationProject.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/pages/container/Workspace/AnnotationProject.jsx b/src/ui/pages/container/Workspace/AnnotationProject.jsx index 4f4e52c7b..516ff50d1 100644 --- a/src/ui/pages/container/Workspace/AnnotationProject.jsx +++ b/src/ui/pages/container/Workspace/AnnotationProject.jsx @@ -369,7 +369,7 @@ const AnnotationProject = (props) => { align: "center", customHeadLabelRender: customColumnHead, customBodyRender: (value) => { - if ((key.includes("json")) && value !== null ) { + if ((keys.includes("json")) && value !== null ) { const data = JSON.stringify(value) const metadata = data.replace(/\\/g, ""); return metadata;