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-04-18 23:59:52 +0300
committerdartcafe <github@dartcafe.de>2021-04-18 23:59:52 +0300
commit43e516fd48128c94b045c83674fe5970e61cee2d (patch)
tree79b00434d26a6ed2157f04932e8052873b4b3728 /src/js/components/Poll
parent5ada3eaef1c0eda81d94a3fe26826313241d929d (diff)
arrow-parens
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components/Poll')
-rw-r--r--src/js/components/Poll/MarkUpDescription.vue2
-rw-r--r--src/js/components/Poll/ParticipantsList.vue2
-rw-r--r--src/js/components/Poll/PollInformation.vue8
-rw-r--r--src/js/components/Poll/PollTitle.vue6
-rw-r--r--src/js/components/Poll/PublicRegisterModal.vue4
5 files changed, 11 insertions, 11 deletions
diff --git a/src/js/components/Poll/MarkUpDescription.vue b/src/js/components/Poll/MarkUpDescription.vue
index c07bdd83..776859ad 100644
--- a/src/js/components/Poll/MarkUpDescription.vue
+++ b/src/js/components/Poll/MarkUpDescription.vue
@@ -37,7 +37,7 @@ export default {
computed: {
...mapState({
- description: state => state.poll.descriptionSafe,
+ description: (state) => state.poll.descriptionSafe,
}),
markedDescription() {
diff --git a/src/js/components/Poll/ParticipantsList.vue b/src/js/components/Poll/ParticipantsList.vue
index 50bff58b..2912875c 100644
--- a/src/js/components/Poll/ParticipantsList.vue
+++ b/src/js/components/Poll/ParticipantsList.vue
@@ -56,7 +56,7 @@ export default {
computed: {
...mapState({
- poll: state => state.poll,
+ poll: (state) => state.poll,
}),
...mapGetters({
diff --git a/src/js/components/Poll/PollInformation.vue b/src/js/components/Poll/PollInformation.vue
index 3872deb7..de7a36eb 100644
--- a/src/js/components/Poll/PollInformation.vue
+++ b/src/js/components/Poll/PollInformation.vue
@@ -81,10 +81,10 @@ export default {
computed: {
...mapState({
- share: state => state.share,
- acl: state => state.poll.acl,
- poll: state => state.poll,
- subscribed: state => state.subscription.subscribed,
+ share: (state) => state.share,
+ acl: (state) => state.poll.acl,
+ poll: (state) => state.poll,
+ subscribed: (state) => state.subscription.subscribed,
}),
...mapGetters({
diff --git a/src/js/components/Poll/PollTitle.vue b/src/js/components/Poll/PollTitle.vue
index 9c9c93a8..77987619 100644
--- a/src/js/components/Poll/PollTitle.vue
+++ b/src/js/components/Poll/PollTitle.vue
@@ -43,9 +43,9 @@ export default {
computed: {
...mapState({
- title: state => state.poll.title,
- expire: state => state.poll.expire,
- deleted: state => state.poll.deleted,
+ title: (state) => state.poll.title,
+ expire: (state) => state.poll.expire,
+ deleted: (state) => state.poll.deleted,
}),
...mapGetters({
diff --git a/src/js/components/Poll/PublicRegisterModal.vue b/src/js/components/Poll/PublicRegisterModal.vue
index 9a295a22..89dbb18d 100644
--- a/src/js/components/Poll/PublicRegisterModal.vue
+++ b/src/js/components/Poll/PublicRegisterModal.vue
@@ -107,8 +107,8 @@ export default {
computed: {
...mapState({
- poll: state => state.poll,
- share: state => state.share,
+ poll: (state) => state.poll,
+ share: (state) => state.share,
}),
disableSubmit() {