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 11:26:18 +0300
committerdartcafe <github@dartcafe.de>2022-03-30 11:26:18 +0300
commit85e2b003523ceed631f896396522714076330453 (patch)
tree9aab70637704e5e1fdf47e2f5b25fe054b0ad6c5 /src/js/store
parent6293d8c86c42deef3e20aa3cda1d4a57b7eab632 (diff)
rename icon declarations
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/store')
-rw-r--r--src/js/store/modules/poll.js4
-rw-r--r--src/js/store/modules/polls.js16
2 files changed, 10 insertions, 10 deletions
diff --git a/src/js/store/modules/poll.js b/src/js/store/modules/poll.js
index 9b6a70dd..9d988edf 100644
--- a/src/js/store/modules/poll.js
+++ b/src/js/store/modules/poll.js
@@ -111,9 +111,9 @@ const getters = {
typeIcon: (state) => {
if (state.type === 'textPoll') {
- return 'icon-md-text-poll'
+ return 'icon-mask-md-text-poll'
}
- return 'icon-md-date-poll'
+ return 'icon-mask-md-date-poll'
},
answerSequence: (state, getters, rootState) => {
diff --git a/src/js/store/modules/polls.js b/src/js/store/modules/polls.js
index 35c32356..087c82a7 100644
--- a/src/js/store/modules/polls.js
+++ b/src/js/store/modules/polls.js
@@ -43,7 +43,7 @@ const state = {
title: t('polls', 'Relevant'),
titleExt: t('polls', 'Relevant polls'),
description: t('polls', 'All polls which are relevant or important to you, because you are a participant or the owner or you are invited to. Without polls closed more than five days ago.'),
- icon: 'icon-md-navigation-relevant',
+ icon: 'icon-mask-md-navigation-relevant',
pinned: false,
createDependent: false,
filterCondition(poll) {
@@ -61,7 +61,7 @@ const state = {
title: t('polls', 'My polls'),
titleExt: t('polls', 'My polls'),
description: t('polls', 'Your polls (in which you are the owner).'),
- icon: 'icon-md-navigation-my',
+ icon: 'icon-mask-md-navigation-my',
pinned: false,
createDependent: true,
filterCondition(poll) {
@@ -73,7 +73,7 @@ const state = {
title: t('polls', 'Private polls'),
titleExt: t('polls', 'Private polls'),
description: t('polls', 'All private polls, to which you have access.'),
- icon: 'icon-md-navigation-private',
+ icon: 'icon-mask-md-navigation-private',
pinned: false,
createDependent: true,
filterCondition(poll) {
@@ -85,7 +85,7 @@ const state = {
title: t('polls', 'Participated'),
titleExt: t('polls', 'Participated'),
description: t('polls', 'All polls, where you placed a vote.'),
- icon: 'icon-md-navigation-participated',
+ icon: 'icon-mask-md-navigation-participated',
pinned: false,
createDependent: false,
filterCondition(poll) {
@@ -97,7 +97,7 @@ const state = {
title: t('polls', 'Open polls'),
titleExt: t('polls', 'Open polls'),
description: t('polls', 'A complete list with all open polls on this site, regardless who is the owner.'),
- icon: 'icon-md-navigation-open',
+ icon: 'icon-mask-md-navigation-open',
pinned: false,
createDependent: true,
filterCondition(poll) {
@@ -109,7 +109,7 @@ const state = {
title: t('polls', 'All polls'),
titleExt: t('polls', 'All polls'),
description: t('polls', 'All polls, where you have access to.'),
- icon: 'icon-md-navigation-all',
+ icon: 'icon-mask-md-navigation-all',
pinned: false,
createDependent: false,
filterCondition(poll) {
@@ -121,7 +121,7 @@ const state = {
title: t('polls', 'Closed polls'),
titleExt: t('polls', 'Closed polls'),
description: t('polls', 'All closed polls, where voting is disabled.'),
- icon: 'icon-md-navigation-closed',
+ icon: 'icon-mask-md-navigation-closed',
pinned: false,
createDependent: false,
filterCondition(poll) {
@@ -135,7 +135,7 @@ const state = {
title: t('polls', 'Archive'),
titleExt: t('polls', 'My archived polls'),
description: t('polls', 'Your archived polls are only accessible to you.'),
- icon: 'icon-md-navigation-archived',
+ icon: 'icon-mask-md-navigation-archived',
pinned: true,
createDependent: true,
filterCondition(poll) {