Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/SharingSidebarView.vue')
-rw-r--r--src/components/SharingSidebarView.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/SharingSidebarView.vue b/src/components/SharingSidebarView.vue
index 0f7e201a..e24fd9b2 100644
--- a/src/components/SharingSidebarView.vue
+++ b/src/components/SharingSidebarView.vue
@@ -129,13 +129,13 @@
export default {
name: 'SharingSidebarView',
- props: ['fileModel'],
+ props: ['fileInfo'],
components: {
Avatar, Multiselect, AclStateButton
},
beforeMount () {
this.loading = true;
- this.model = JSON.parse(JSON.stringify(this.fileModel));
+ this.model = JSON.parse(JSON.stringify(this.fileInfo));
client.propFind(this.model).then((data) => {
if (data.acls) {
this.list = data.acls;