diff options
-rw-r--r-- | apps/files_sharing/src/views/SharingTab.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/views/SharingTab.vue b/apps/files_sharing/src/views/SharingTab.vue index 0d991fa3982..d096d8a1469 100644 --- a/apps/files_sharing/src/views/SharingTab.vue +++ b/apps/files_sharing/src/views/SharingTab.vue @@ -264,7 +264,7 @@ export default { const shares = data.ocs.data .map(share => new Share(share)) .sort((a, b) => { - const localCompare = a.title.localeCompare(b.title) + const localCompare = a.shareWithDisplayName.localeCompare(b.shareWithDisplayName) if (localCompare !== 0) { return localCompare } |