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/Comments
parent5ada3eaef1c0eda81d94a3fe26826313241d929d (diff)
arrow-parens
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components/Comments')
-rw-r--r--src/js/components/Comments/CommentAdd.vue2
-rw-r--r--src/js/components/Comments/CommentItem.vue2
-rw-r--r--src/js/components/Comments/Comments.vue2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/js/components/Comments/CommentAdd.vue b/src/js/components/Comments/CommentAdd.vue
index d63afc41..e052634a 100644
--- a/src/js/components/Comments/CommentAdd.vue
+++ b/src/js/components/Comments/CommentAdd.vue
@@ -48,7 +48,7 @@ export default {
computed: {
...mapState({
- acl: state => state.poll.acl,
+ acl: (state) => state.poll.acl,
}),
},
diff --git a/src/js/components/Comments/CommentItem.vue b/src/js/components/Comments/CommentItem.vue
index a3b34fdc..7c3122f2 100644
--- a/src/js/components/Comments/CommentItem.vue
+++ b/src/js/components/Comments/CommentItem.vue
@@ -73,7 +73,7 @@ export default {
computed: {
...mapState({
- acl: state => state.poll.acl,
+ acl: (state) => state.poll.acl,
}),
dateCommentedRelative() {
return moment.utc(this.comment.dt).fromNow()
diff --git a/src/js/components/Comments/Comments.vue b/src/js/components/Comments/Comments.vue
index 9f1530ea..51695a13 100644
--- a/src/js/components/Comments/Comments.vue
+++ b/src/js/components/Comments/Comments.vue
@@ -47,7 +47,7 @@ export default {
computed: {
...mapState({
- comments: state => state.comments.list,
+ comments: (state) => state.comments.list,
}),
sortedList() {