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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2019-11-12 23:29:59 +0300
committerdartcafe <github@dartcafe.de>2019-11-12 23:29:59 +0300
commitb18967e2de06356d6bf4e12e62b77bbc83e4fba5 (patch)
tree84031d11e7d62a5b7c3edfe4c1846508a84419a7 /src/js/store/modules/shares.js
parentc2bd57a1cd00ebd9a8232704fa0e6c03128b2ba8 (diff)
minor fixes
Diffstat (limited to 'src/js/store/modules/shares.js')
-rw-r--r--src/js/store/modules/shares.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/store/modules/shares.js b/src/js/store/modules/shares.js
index ffc751d1..0f320602 100644
--- a/src/js/store/modules/shares.js
+++ b/src/js/store/modules/shares.js
@@ -58,7 +58,7 @@ const getters = {
},
invitationShares: state => {
- var invitationTypes = ['user', 'group']
+ var invitationTypes = ['user', 'group', 'mail', 'external']
return state.list.filter(function(share) {
return invitationTypes.includes(share.type)
})