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/SideBar
parent5ada3eaef1c0eda81d94a3fe26826313241d929d (diff)
arrow-parens
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components/SideBar')
-rw-r--r--src/js/components/SideBar/SideBar.vue4
-rw-r--r--src/js/components/SideBar/SideBarTabComments.vue2
-rw-r--r--src/js/components/SideBar/SideBarTabConfiguration.vue4
-rw-r--r--src/js/components/SideBar/SideBarTabOptions.vue4
-rw-r--r--src/js/components/SideBar/SideBarTabShare.vue2
5 files changed, 8 insertions, 8 deletions
diff --git a/src/js/components/SideBar/SideBar.vue b/src/js/components/SideBar/SideBar.vue
index 9b7d3318..656fe6fd 100644
--- a/src/js/components/SideBar/SideBar.vue
+++ b/src/js/components/SideBar/SideBar.vue
@@ -89,8 +89,8 @@ export default {
computed: {
...mapState({
- poll: state => state.poll,
- acl: state => state.poll.acl,
+ poll: (state) => state.poll,
+ acl: (state) => state.poll.acl,
}),
},
methods: {
diff --git a/src/js/components/SideBar/SideBarTabComments.vue b/src/js/components/SideBar/SideBarTabComments.vue
index c7330d0f..b3dedf04 100644
--- a/src/js/components/SideBar/SideBarTabComments.vue
+++ b/src/js/components/SideBar/SideBarTabComments.vue
@@ -49,7 +49,7 @@ export default {
computed: {
...mapState({
- acl: state => state.poll.acl,
+ acl: (state) => state.poll.acl,
}),
...mapGetters({
diff --git a/src/js/components/SideBar/SideBarTabConfiguration.vue b/src/js/components/SideBar/SideBarTabConfiguration.vue
index 25e5810f..cd3be93d 100644
--- a/src/js/components/SideBar/SideBarTabConfiguration.vue
+++ b/src/js/components/SideBar/SideBarTabConfiguration.vue
@@ -107,8 +107,8 @@ export default {
computed: {
...mapState({
- poll: state => state.poll,
- acl: state => state.poll.acl,
+ poll: (state) => state.poll,
+ acl: (state) => state.poll.acl,
}),
...mapGetters({
diff --git a/src/js/components/SideBar/SideBarTabOptions.vue b/src/js/components/SideBar/SideBarTabOptions.vue
index b90100d6..045d2f50 100644
--- a/src/js/components/SideBar/SideBarTabOptions.vue
+++ b/src/js/components/SideBar/SideBarTabOptions.vue
@@ -82,8 +82,8 @@ export default {
pollTypeIcon: 'poll/typeIcon',
}),
...mapState({
- pollType: state => state.poll.type,
- isOwner: state => state.poll.acl.isOwner,
+ pollType: (state) => state.poll.type,
+ isOwner: (state) => state.poll.acl.isOwner,
}),
},
}
diff --git a/src/js/components/SideBar/SideBarTabShare.vue b/src/js/components/SideBar/SideBarTabShare.vue
index bc84d6ae..83ef1061 100644
--- a/src/js/components/SideBar/SideBarTabShare.vue
+++ b/src/js/components/SideBar/SideBarTabShare.vue
@@ -53,7 +53,7 @@ export default {
computed: {
...mapState({
- isOwner: state => state.poll.acl.isOwner,
+ isOwner: (state) => state.poll.acl.isOwner,
}),
},