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/views/Administration.vue')
-rw-r--r--src/js/views/Administration.vue3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/js/views/Administration.vue b/src/js/views/Administration.vue
index 8efebc8d..daa83fac 100644
--- a/src/js/views/Administration.vue
+++ b/src/js/views/Administration.vue
@@ -154,9 +154,8 @@ export default {
sortedList() {
if (this.reverse) {
return sortBy(this.filteredPolls(this.$route.params.type), this.sort).reverse()
- } else {
- return sortBy(this.filteredPolls(this.$route.params.type), this.sort)
}
+ return sortBy(this.filteredPolls(this.$route.params.type), this.sort)
},
noPolls() {