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>2021-03-25 12:56:29 +0300
committerdartcafe <github@dartcafe.de>2021-03-25 12:56:29 +0300
commit031a296dacfa6f886803a9479020b0f1f435019c (patch)
tree7e4818b9980aeb329dc08b1b59f617c0ca1deedf /src/js/store
parent12f08fd6377982a65085bf3d0eb54523746c4962 (diff)
remove review option from proposals
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/store')
-rw-r--r--src/js/store/modules/poll.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/store/modules/poll.js b/src/js/store/modules/poll.js
index 62fa9eb7..6a111125 100644
--- a/src/js/store/modules/poll.js
+++ b/src/js/store/modules/poll.js
@@ -103,7 +103,7 @@ const getters = {
return [
{ value: 'disallow', label: t('polls', 'Disallow Proposals') },
{ value: 'allow', label: t('polls', 'Allow Proposals') },
- { value: 'review', label: t('polls', 'Allow with review') },
+ // { value: 'review', label: t('polls', 'Allow with review') },
]
},