Skip to content

Commit

Permalink
Poké: display ds created at on ds view (#9820)
Browse files Browse the repository at this point in the history
  • Loading branch information
PopDaph authored Jan 8, 2025
1 parent 5b01051 commit 25362ac
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions front/components/poke/data_sources/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ export function ViewDataSourceTable({
<PokeTableCell>Description</PokeTableCell>
<PokeTableCell>{dataSource.description}</PokeTableCell>
</PokeTableRow>
<PokeTableRow>
<PokeTableCell>Created at</PokeTableCell>
<PokeTableCell>
{formatTimestampToFriendlyDate(dataSource.createdAt)}
</PokeTableCell>
</PokeTableRow>
<PokeTableRow>
<PokeTableCell>Edited by</PokeTableCell>
<PokeTableCell>
Expand Down

0 comments on commit 25362ac

Please sign in to comment.