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>2022-03-30 01:52:28 +0300
committerdartcafe <github@dartcafe.de>2022-03-30 01:52:28 +0300
commit6293d8c86c42deef3e20aa3cda1d4a57b7eab632 (patch)
treeacc9a24bfc137ca75c327a3b4d1072bc6e367314 /src/js/views
parentc5b14f5667982c2acb249a4612aa9d1f3aade5d2 (diff)
use md icons (the rest)
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/views')
-rw-r--r--src/js/views/Navigation.vue6
-rw-r--r--src/js/views/PollList.vue8
2 files changed, 7 insertions, 7 deletions
diff --git a/src/js/views/Navigation.vue b/src/js/views/Navigation.vue
index eeef6ead..27fd0cc1 100644
--- a/src/js/views/Navigation.vue
+++ b/src/js/views/Navigation.vue
@@ -49,13 +49,13 @@
<template #footer>
<AppNavigationItem v-if="isComboActivated"
:title="t('polls', 'Combine polls')"
- icon="icon-projects"
+ icon="icon-md-navigation-combo"
:to="{ name: 'combo' }" />
<AppNavigationItem v-if="showAdminSection"
:title="t('core', 'Administration')"
- icon="icon-settings"
+ icon="icon-md-navigation-administration"
:to="{ name: 'administration' }" />
- <AppNavigationItem :title="t('core', 'Your app settings')" icon="icon-settings" @click="showSettings()" />
+ <AppNavigationItem :title="t('core', 'Personal settings')" icon="icon-md-navigation-personal-settings" @click="showSettings()" />
</template>
</AppNavigation>
</template>
diff --git a/src/js/views/PollList.vue b/src/js/views/PollList.vue
index 5593523f..f0bff76e 100644
--- a/src/js/views/PollList.vue
+++ b/src/js/views/PollList.vue
@@ -53,28 +53,28 @@
<template #actions>
<Actions force-menu>
<ActionButton v-if="isPollCreationAllowed"
- icon="icon-add"
+ icon="icon-md-clone-poll"
:close-after-click="true"
@click="clonePoll(poll.id)">
{{ t('polls', 'Clone poll') }}
</ActionButton>
<ActionButton v-if="poll.allowEdit && !poll.deleted"
- icon="icon-category-app-bundles"
+ icon="icon-md-archive-poll"
:close-after-click="true"
@click="toggleArchive(poll.id)">
{{ t('polls', 'Archive poll') }}
</ActionButton>
<ActionButton v-if="poll.allowEdit && poll.deleted"
- icon="icon-history"
+ icon="icon-md-restore-poll"
:close-after-click="true"
@click="toggleArchive(poll.id)">
{{ t('polls', 'Restore poll') }}
</ActionButton>
<ActionButton v-if="poll.allowEdit && poll.deleted"
- icon="icon-delete"
+ icon="icon-md-delete-poll"
class="danger"
:close-after-click="true"
@click="deletePoll(poll.id)">