null check (#178)

This commit is contained in:
Roman Cervantes 2020-01-28 09:51:52 -07:00 committed by GitHub
parent 2a9f6c687d
commit e73559fadd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -212,7 +212,7 @@ export default {
}, },
showGameCount() { showGameCount() {
return this.settings[this.platform.code].showGameCount; return this.settings[this.platform.code] && this.settings[this.platform.code].showGameCount;
}, },
gameCardComponent() { gameCardComponent() {