Skip to content

Commit

Permalink
Show project created instead of modified on table (#1922)
Browse files Browse the repository at this point in the history
show project created instead of modified on table
  • Loading branch information
david-crespo authored Jan 30, 2024
1 parent 231b93e commit a26f7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pages/ProjectsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default function ProjectsPage() {
<Table emptyState={<EmptyState />} makeActions={makeActions}>
<Column accessor="name" cell={linkCell((project) => pb.instances({ project }))} />
<Column accessor="description" />
<Column accessor="timeModified" header="Last updated" cell={DateCell} />
<Column accessor="timeCreated" header="Created" cell={DateCell} />
</Table>
<Outlet />
</>
Expand Down

0 comments on commit a26f7c1

Please sign in to comment.