mirror of
https://github.com/romancm/gamebrary
synced 2024-11-24 04:03:06 +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() {
|
showGameCount() {
|
||||||
return this.settings[this.platform.code].showGameCount;
|
return this.settings[this.platform.code] && this.settings[this.platform.code].showGameCount;
|
||||||
},
|
},
|
||||||
|
|
||||||
gameCardComponent() {
|
gameCardComponent() {
|
||||||
|
|
Loading…
Reference in a new issue