summaryrefslogtreecommitdiff
path: root/src/Highlights.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/Highlights.vue')
-rw-r--r--src/Highlights.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Highlights.vue b/src/Highlights.vue
index 0b3be87..73cdf7b 100644
--- a/src/Highlights.vue
+++ b/src/Highlights.vue
@@ -111,7 +111,7 @@ import * as maps from './maps/maps.js';
export default Vue.component('highlights', {
mixins: [ RouterParamMixin ],
computed: {
- stats: function() {
+ stats() {
return {
topWin: ReportService.getTopWin(this.selectedMode),
topUnpopularWin: ReportService.getTopUnpopularWin(this.selectedMode),
@@ -127,7 +127,7 @@ export default Vue.component('highlights', {
topBlitzPointsDelta: ReportService.getTopBlitzPointsDelta(this.selectedMode),
};
},
- playersPerMatch: function() {
+ playersPerMatch() {
return maps.playersPerMatch(this.selectedMode);
},
},