diff options
Diffstat (limited to 'src/TalentBox.vue')
| -rw-r--r-- | src/TalentBox.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TalentBox.vue b/src/TalentBox.vue index 8e6a319..8c980f1 100644 --- a/src/TalentBox.vue +++ b/src/TalentBox.vue @@ -67,10 +67,10 @@ import * as maps from './maps/maps'; export default Vue.component('talent-box', { props: ['title', 'content', 'entry', 'type', 'value', 'label'], computed: { - hero: function() { + hero() { return maps.getHero(this.entry.Actor); }, - hasTalent: function() { + hasTalent() { return maps.getTalentRarity(this.entry.Talent) != 'None'; }, }, |
