Skip to content

Commit 64dc580

Browse files
committed
fix(ShareEntryLinkList): Append new links to the end of list
Currently new shares are added to beginning of the share list in the UI messing up the ordering with the original (first) looking like the most recent and the most recent looking like the original share. This error disappears on refresh. Resolves : #48415 Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
1 parent 9fde83c commit 64dc580

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/files_sharing/src/views/SharingLinkList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export default {
101101
*/
102102
addShare(share, resolve) {
103103
// eslint-disable-next-line vue/no-mutating-props
104-
this.shares.unshift(share)
104+
this.shares.push(share)
105105
this.awaitForShare(share, resolve)
106106
},
107107

0 commit comments

Comments
 (0)