Skip to content

Commit

Permalink
feat: Updating data of the columns Connections and Modified
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioAlonsoRoman committed Aug 28, 2024
1 parent 8301b44 commit 03e3c7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Services/DtsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -294,13 +294,13 @@ function DtsList() {
</td>
<td className="border-b border-[#eee] px-4 py-5 pl-9 text-center dark:border-strokedark xl:pl-11">
<h5 className="font-medium text-black dark:text-white">
Connections
{dts.connection}
</h5>
</td>
<td className="border-b border-[#eee] px-4 py-5 pl-9 text-center dark:border-strokedark xl:pl-11">
{dts.createdTs && (
{dts.modifiedTs && (
<h5 className="font-medium text-black dark:text-white">
{`${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')}`}
</h5>
)}
</td>
Expand Down

0 comments on commit 03e3c7a

Please sign in to comment.