From 03e3c7a273c2628ea19e7491bf5afcaaf06bd798 Mon Sep 17 00:00:00 2001 From: SergioAlonsoRoman Date: Wed, 28 Aug 2024 09:46:42 -0600 Subject: [PATCH] feat: Updating data of the columns Connections and Modified --- src/components/Services/DtsList.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Services/DtsList.tsx b/src/components/Services/DtsList.tsx index 7a4e2d1b..fd9bfe69 100644 --- a/src/components/Services/DtsList.tsx +++ b/src/components/Services/DtsList.tsx @@ -294,13 +294,13 @@ function DtsList() {
- Connections + {dts.connection}
- {dts.createdTs && ( + {dts.modifiedTs && (
- {`${dts.createdTs.getFullYear()}-${(dts.createdTs.getMonth() + 1).toString().padStart(2, '0')}-${dts.createdTs.getDate().toString().padStart(2, '0')}`} + {`${dts.modifiedTs.getFullYear()}-${(dts.modifiedTs.getMonth() + 1).toString().padStart(2, '0')}-${dts.modifiedTs.getDate().toString().padStart(2, '0')}`}
)}