Skip to content

Commit 3eab29a

Browse files
waleedlatif1claude
andcommitted
feat(files): show Last Updated column
Matches the visible-column pattern already used on Knowledge and Tables so users can see the value they're sorting by. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 2ede34b commit 3eab29a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • apps/sim/app/workspace/[workspaceId]/files

apps/sim/app/workspace/[workspaceId]/files/files.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ const COLUMNS: ResourceColumn[] = [
9797
{ id: 'type', header: 'Type' },
9898
{ id: 'created', header: 'Created' },
9999
{ id: 'owner', header: 'Owner' },
100+
{ id: 'updated', header: 'Last Updated' },
100101
]
101102

102103
const MIME_TYPE_LABELS: Record<string, string> = {
@@ -313,6 +314,7 @@ export function Files() {
313314
},
314315
created: timeCell(file.uploadedAt),
315316
owner: ownerCell(file.uploadedBy, members),
317+
updated: timeCell(file.updatedAt),
316318
},
317319
}
318320
nextCache.set(file.id, { row, file, members })

0 commit comments

Comments
 (0)