Removed unused computed prop

This commit is contained in:
romancm 2019-06-24 18:07:09 -07:00
parent 9727a4ebb7
commit bdd067739b

View file

@ -69,14 +69,6 @@ export default {
list() {
return this.gameLists[this.platform.code];
},
isDuplicate() {
const newListName = this.newListName.toLowerCase();
return this.list ?
this.list.filter(({ name }) => name.toLowerCase() === newListName).length > 0
: false;
},
},
methods: {