Skip to content

Commit 7ccb422

Browse files
authored
fix(): missing By in lastModified*By*Label (#566)
Signed-off-by: sBouzols <[email protected]>
1 parent f7a5a83 commit 7ccb422

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooks/useDirectoryContent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const useDirectoryContent = () => {
108108
return currentChildren.map((x) => ({
109109
...x,
110110
ownerLabel: childrenMetadata?.[x.elementUuid]?.ownerLabel,
111-
lastModifiedLabel: childrenMetadata?.[x.elementUuid]?.lastModifiedByLabel,
111+
lastModifiedByLabel: childrenMetadata?.[x.elementUuid]?.lastModifiedByLabel,
112112
}));
113113
}, [currentChildren, childrenMetadata]);
114114

0 commit comments

Comments
 (0)