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-03 00:24:07 +0300
committerdartcafe <github@dartcafe.de>2021-03-03 00:24:07 +0300
commit3bd7cd6245e72505495f3cc758c73a3aed030b6f (patch)
tree90ad16cc95f9c4ec1519edf3ac11a4e249f66c1d /src/js/views/Vote.vue
parentdab963d01434f4741e936b275a0be685a4f4b20a (diff)
replaced sidebar icon
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/views/Vote.vue')
-rw-r--r--src/js/views/Vote.vue7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/js/views/Vote.vue b/src/js/views/Vote.vue
index 72b35a3e..cb74e211 100644
--- a/src/js/views/Vote.vue
+++ b/src/js/views/Vote.vue
@@ -23,6 +23,7 @@
<template>
<AppContent :class="[{ closed: closed }, poll.type]">
<div class="header-actions">
+ <PersonalLink v-if="$route.name === 'publicVote' && poll.id && share.userId" />
<PollInformation />
<Actions>
<ActionButton :icon="sortIcon" @click="ranked = !ranked">
@@ -35,7 +36,7 @@
</ActionButton>
</Actions>
<Actions>
- <ActionButton v-if="acl.allowEdit || poll.allowComment" icon="icon-polls-sidebar-toggle" @click="toggleSideBar()">
+ <ActionButton v-if="acl.allowEdit || poll.allowComment" icon="icon-menu-sidebar" @click="toggleSideBar()">
{{ t('polls', 'Toggle Sidebar') }}
</ActionButton>
</Actions>
@@ -63,10 +64,6 @@
</h3>
</div>
- <div v-if="$route.name === 'publicVote' && poll.id" class="area__public">
- <PersonalLink v-if="share.userId" />
- </div>
-
<div class="area__main" :class="viewMode">
<VoteTable v-show="options.length" :view-mode="viewMode" :ranked="ranked" />