Skip to content

Commit e6d2fc2

Browse files
meld-cpjkowalski
authored andcommitted
feat(ui): added sorting to DirectoryItems Name column (fixes: kopia/kopia#4684)
1 parent dac0262 commit e6d2fc2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/components/DirectoryItems.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export function DirectoryItems({ historyState, items }) {
4646
const columns = [
4747
{
4848
id: "name",
49+
accessorFn: (x) => objectName(x.name, x.type),
4950
header: "Name",
5051
width: "",
5152
cell: (x) => directoryLinkOrDownload(x.row.original, historyState),

0 commit comments

Comments
 (0)