summaryrefslogtreecommitdiff
path: root/src/HeroDraftGrid.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/HeroDraftGrid.vue')
-rw-r--r--src/HeroDraftGrid.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/HeroDraftGrid.vue b/src/HeroDraftGrid.vue
index 5f6e2ed..bdf6cbf 100644
--- a/src/HeroDraftGrid.vue
+++ b/src/HeroDraftGrid.vue
@@ -27,15 +27,15 @@
import Vue from 'vue';
import TalentImage from './TalentImage.vue';
import HeroImage from './HeroImage.vue';
-import RouterParamMixin from './RouterParamMixin.js';
+import RouterParamMixin from './RouterParamMixin';
+import ReportService from './ReportService';
import * as maps from './maps/maps';
export default Vue.component('hero-draft-grid', {
- props: [ 'reportService' ],
mixins: [ RouterParamMixin ],
data: function() {
return {
- actors: this.reportService.getActors().sort(),
+ actors: ReportService.getActors().sort(),
getHero: maps.getHero,
getTalentName: maps.getTalentName,
};