Skip to content

Commit

Permalink
Merge pull request #49021 from nextcloud/backport/49017/stable29
Browse files Browse the repository at this point in the history
[stable29] fix(ShareEntryLinkList): Append new links to the end of list
  • Loading branch information
artonge authored Oct 31, 2024
2 parents 2819181 + 9fa1505 commit 6bf15d8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/files_sharing/src/views/SharingLinkList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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)
},

Expand Down
6 changes: 3 additions & 3 deletions dist/1720-1720.js → dist/1356-1356.js

Large diffs are not rendered by default.

File renamed without changes.
1 change: 1 addition & 0 deletions dist/1356-1356.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/1720-1720.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions dist/files_sharing-files_sharing_tab.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/files_sharing-files_sharing_tab.js.map

Large diffs are not rendered by default.

0 comments on commit 6bf15d8

Please sign in to comment.