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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-02-21 15:41:38 +0300
committerJulius Härtl <jus@bitgrid.net>2019-03-01 22:56:58 +0300
commit7207a777a1e071f2ed144c5a26927b8006e198fc (patch)
tree90aba6e7ec0fde135d5ff5831af250b5e7c9ed3c /apps/files_sharing/src/collaborationresources.js
parentcab704f0cc98c6e2f6658cdb57fbabda9f448654 (diff)
Use nextcloud-vue-collections library
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files_sharing/src/collaborationresources.js')
-rw-r--r--apps/files_sharing/src/collaborationresources.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/src/collaborationresources.js b/apps/files_sharing/src/collaborationresources.js
index 0b42b66e0ae..ce53d0cd936 100644
--- a/apps/files_sharing/src/collaborationresources.js
+++ b/apps/files_sharing/src/collaborationresources.js
@@ -25,7 +25,10 @@ import Vuex from 'vuex';
import { PopoverMenu } from 'nextcloud-vue';
import ClickOutside from 'vue-click-outside';
import { VTooltip } from 'v-tooltip';
-import { CollectionStore as Store } from './collectionstore';
+import { CollectionStoreModule } from 'nextcloud-vue-collections';
+
+const Store = () => new Vuex.Store(CollectionStoreModule);
+
Vue.prototype.t = t;