mirror of
https://github.com/nextcloud/server.git
synced 2026-04-26 16:48:59 -04:00
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 : https://github.com/nextcloud/server/issues/48415 Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
This commit is contained in:
parent
2819181c25
commit
3fd15c6982
1 changed files with 1 additions and 1 deletions
|
|
@ -118,7 +118,7 @@ export default {
|
|||
*/
|
||||
addShare(share, resolve) {
|
||||
// eslint-disable-next-line vue/no-mutating-props
|
||||
this.shares.unshift(share)
|
||||
this.shares.push(share)
|
||||
this.awaitForShare(share, resolve)
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue