Skip to content

Commit fb71f4b

Browse files
authored
Merge pull request #49022 from nextcloud/backport/49017/stable30
[stable30] fix(ShareEntryLinkList): Append new links to the end of list
2 parents 98a66e2 + 454ac36 commit fb71f4b

File tree

9 files changed

+8
-8
lines changed

9 files changed

+8
-8
lines changed

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

dist/3154-3154.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/3154-3154.js.map.license

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/9141-9141.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/9141-9141.js.map.license

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9141-9141.js.license

dist/files_sharing-files_sharing_tab.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/files_sharing-files_sharing_tab.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)