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-02 21:32:15 +0300
committerdartcafe <github@dartcafe.de>2021-03-02 21:32:15 +0300
commit7b2e40a4ad0efd84eac7e863748c4e438598ac74 (patch)
treefd738d774148dedbbf14f49181aa2d01f35ce19a /src/js/views/Vote.vue
parent902a7a7e066f0a9f8481da6ad8108cf18412573a (diff)
Hide counter and participants, if results are hidden
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/views/Vote.vue')
-rw-r--r--src/js/views/Vote.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/views/Vote.vue b/src/js/views/Vote.vue
index 1c1dd971..72b35a3e 100644
--- a/src/js/views/Vote.vue
+++ b/src/js/views/Vote.vue
@@ -86,7 +86,7 @@
<div class="area__footer">
<PublicEmail v-if="showEmailEdit" :value="share.emailAddress" @update="submitEmailAddress" />
<Subscription v-if="acl.allowSubscribe" />
- <ParticipantsList v-if="acl.allowSeeUsernames" />
+ <ParticipantsList v-if="acl.allowSeeUsernames && acl.AllowSeeResults" />
</div>
<PublicRegisterModal v-if="showRegisterModal" />