Fix episode number on malForm

This commit is contained in:
Kylart 2017-11-27 22:43:31 +01:00
parent 7983a43233
commit 96ad65bb76
1 changed files with 2 additions and 2 deletions

View File

@ -214,10 +214,10 @@
return this.$store.state.mal.entry
},
entryTitle () {
return ': ' + (this.entry.anime_title || this.entry.name || this.entry.title)
return ': ' + (this.entry.title || this.entry.name)
},
nbEpisodes () {
return this.entry.anime_num_episodes || this.entry.episodes
return this.entry.nbEpisodes || this.entry.episodes
},
isEdit () {
return this.entry.lastUpdate