Merge pull request #35836 from nextcloud/fix/remove-other-share-when-deleted

fix: remove other shares from ui when deleted
This commit is contained in:
Julius Härtl 2022-12-21 09:10:53 +01:00 committed by GitHub
commit f562fc716a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

View File

@ -41,7 +41,8 @@
<SharingEntryInherited v-for="share in shares"
:key="share.id"
:file-info="fileInfo"
:share="share" />
:share="share"
@remove:share="removeShare" />
</ul>
</template>
@ -152,6 +153,16 @@ export default {
this.showInheritedShares = false
this.shares = []
},
/**
* Remove a share from the shares list
*
* @param {Share} share the share to remove
*/
removeShare(share) {
const index = this.shares.findIndex(item => item === share)
// eslint-disable-next-line vue/no-mutating-props
this.shares.splice(index, 1)
},
},
}
</script>

Binary file not shown.

Binary file not shown.