mirror of
https://github.com/romancm/gamebrary
synced 2024-11-23 19:53:14 +00:00
null check (#178)
This commit is contained in:
parent
2a9f6c687d
commit
e73559fadd
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ export default {
|
|||
},
|
||||
|
||||
showGameCount() {
|
||||
return this.settings[this.platform.code].showGameCount;
|
||||
return this.settings[this.platform.code] && this.settings[this.platform.code].showGameCount;
|
||||
},
|
||||
|
||||
gameCardComponent() {
|
||||
|
|
Loading…
Reference in a new issue