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>2020-05-02 02:05:01 +0300
committerdartcafe <github@dartcafe.de>2020-05-02 02:05:01 +0300
commit90bbbc070623c581602845dceed6b726a2a46806 (patch)
treec36aef1258c610189f09dfc3c51e86420dd871b5 /src/js/components/Comments/Comments.vue
parent5bc812fec1433d827f8c742a5100cbd738ec2574 (diff)
change linter comma-dangle to 'always-multiline'
Diffstat (limited to 'src/js/components/Comments/Comments.vue')
-rw-r--r--src/js/components/Comments/Comments.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/js/components/Comments/Comments.vue b/src/js/components/Comments/Comments.vue
index 4b497600..c49db8bd 100644
--- a/src/js/components/Comments/Comments.vue
+++ b/src/js/components/Comments/Comments.vue
@@ -63,23 +63,23 @@ export default {
components: {
Actions,
ActionButton,
- CommentAdd
+ CommentAdd,
},
data() {
return {
sort: 'timestamp',
- reverse: true
+ reverse: true,
}
},
computed: {
...mapState({
comments: state => state.comments,
- acl: state => state.acl
+ acl: state => state.acl,
}),
...mapGetters([
- 'countComments'
+ 'countComments',
]),
sortedList() {
@@ -88,7 +88,7 @@ export default {
} else {
return sortBy(this.comments.list, this.sort)
}
- }
+ },
},
@@ -101,8 +101,8 @@ export default {
OC.Notification.showTemporary(t('polls', 'Error while deleting the comment'), { type: 'error' })
console.error(error.response)
})
- }
- }
+ },
+ },
}
</script>