From 0dbfc1f87a08eb8d9459f20e22df8c8fcef15e7a Mon Sep 17 00:00:00 2001 From: "pramod.mahajan" Date: Thu, 4 Dec 2025 13:09:29 +0530 Subject: [PATCH 1/2] hide time --- src/components/purchase/DeliverChallanList.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/purchase/DeliverChallanList.jsx b/src/components/purchase/DeliverChallanList.jsx index a8bb4ab4..ee0e1595 100644 --- a/src/components/purchase/DeliverChallanList.jsx +++ b/src/components/purchase/DeliverChallanList.jsx @@ -40,7 +40,7 @@ const DeliverChallanList = ({ purchaseId, viewDocuments }) => {

{item.deliveryChallanNumber}

- {formatUTCToLocalTime(item.deliveryChallanDate, true)} + {formatUTCToLocalTime(item.deliveryChallanDate)}
From f9d66d73b0827eead27ad446718411e9bbc399cf Mon Sep 17 00:00:00 2001 From: "pramod.mahajan" Date: Thu, 4 Dec 2025 13:44:23 +0530 Subject: [PATCH 2/2] changed sequnce of project nave --- src/components/Project/ProjectNav.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Project/ProjectNav.jsx b/src/components/Project/ProjectNav.jsx index c964efd3..23fd949e 100644 --- a/src/components/Project/ProjectNav.jsx +++ b/src/components/Project/ProjectNav.jsx @@ -27,6 +27,7 @@ const ProjectNav = ({ onPillClick, activePill }) => { const ProjectTab = [ { key: "profile", icon: "bx bx-user", label: "Profile" }, + { key: "organization", icon: "bx bx-buildings", label: "Organization" }, { key: "teams", icon: "bx bx-group", label: "Teams" }, { key: "infra", @@ -41,7 +42,7 @@ const ProjectNav = ({ onPillClick, activePill }) => { hidden: !(DirAdmin || DireManager || DirUser), }, { key: "documents", icon: "bx bx-folder-open", label: "Documents", hidden: !(isViewDocuments || isModifyDocument || isUploadDocument) }, - { key: "organization", icon: "bx bx-buildings", label: "Organization" }, + { key: "setting", icon: "bx bxs-cog", label: "Setting", hidden: !isManageTeam }, ]; return (