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:
Diffstat (limited to 'src/js/components/Options')
-rw-r--r--src/js/components/Options/Confirmation.vue4
-rw-r--r--src/js/components/Options/OptionItem.vue2
-rw-r--r--src/js/components/Options/OptionItemOwner.vue4
-rw-r--r--src/js/components/Options/OptionProposals.vue2
-rw-r--r--src/js/components/Options/OptionsDate.vue4
-rw-r--r--src/js/components/Options/OptionsDateShift.vue2
-rw-r--r--src/js/components/Options/OptionsText.vue4
7 files changed, 11 insertions, 11 deletions
diff --git a/src/js/components/Options/Confirmation.vue b/src/js/components/Options/Confirmation.vue
index 5ad27f87..8adcb8a7 100644
--- a/src/js/components/Options/Confirmation.vue
+++ b/src/js/components/Options/Confirmation.vue
@@ -43,8 +43,8 @@ export default {
computed: {
...mapState({
- poll: state => state.poll,
- votes: state => state.votes.list,
+ poll: (state) => state.poll,
+ votes: (state) => state.votes.list,
}),
...mapGetters({
diff --git a/src/js/components/Options/OptionItem.vue b/src/js/components/Options/OptionItem.vue
index 60c9552c..260bbda9 100644
--- a/src/js/components/Options/OptionItem.vue
+++ b/src/js/components/Options/OptionItem.vue
@@ -99,7 +99,7 @@ export default {
},
computed: {
...mapState({
- poll: state => state.poll,
+ poll: (state) => state.poll,
}),
isDraggable() {
diff --git a/src/js/components/Options/OptionItemOwner.vue b/src/js/components/Options/OptionItemOwner.vue
index 50430150..cb9527a8 100644
--- a/src/js/components/Options/OptionItemOwner.vue
+++ b/src/js/components/Options/OptionItemOwner.vue
@@ -68,8 +68,8 @@ export default {
computed: {
...mapState({
- pollOwner: state => state.poll.owner,
- acl: state => state.poll.acl,
+ pollOwner: (state) => state.poll.owner,
+ acl: (state) => state.poll.acl,
}),
...mapGetters({
diff --git a/src/js/components/Options/OptionProposals.vue b/src/js/components/Options/OptionProposals.vue
index b07cdb04..d329b141 100644
--- a/src/js/components/Options/OptionProposals.vue
+++ b/src/js/components/Options/OptionProposals.vue
@@ -55,7 +55,7 @@ export default {
computed: {
...mapState({
- pollType: state => state.poll.type,
+ pollType: (state) => state.poll.type,
}),
...mapGetters({
diff --git a/src/js/components/Options/OptionsDate.vue b/src/js/components/Options/OptionsDate.vue
index dee5f236..07d5dc42 100644
--- a/src/js/components/Options/OptionsDate.vue
+++ b/src/js/components/Options/OptionsDate.vue
@@ -107,8 +107,8 @@ export default {
computed: {
...mapState({
- options: state => state.options.list,
- acl: state => state.poll.acl,
+ options: (state) => state.options.list,
+ acl: (state) => state.poll.acl,
}),
...mapGetters({
diff --git a/src/js/components/Options/OptionsDateShift.vue b/src/js/components/Options/OptionsDateShift.vue
index e5093858..72abc40c 100644
--- a/src/js/components/Options/OptionsDateShift.vue
+++ b/src/js/components/Options/OptionsDateShift.vue
@@ -75,7 +75,7 @@ export default {
computed: {
...mapState({
- options: state => state.options.list,
+ options: (state) => state.options.list,
}),
...mapGetters({
diff --git a/src/js/components/Options/OptionsText.vue b/src/js/components/Options/OptionsText.vue
index 018a6106..7d916022 100644
--- a/src/js/components/Options/OptionsText.vue
+++ b/src/js/components/Options/OptionsText.vue
@@ -88,8 +88,8 @@ export default {
computed: {
...mapState({
- options: state => state.options.list,
- acl: state => state.poll.acl,
+ options: (state) => state.options.list,
+ acl: (state) => state.poll.acl,
}),
...mapGetters({