don't apply board styles if private board

This commit is contained in:
Gamebrary 2021-02-03 14:54:47 -07:00
parent 8bc61d659a
commit 5126c416b6

View file

@ -69,6 +69,10 @@ export default {
},
boardStyles() {
if (!this.showBoard) {
return;
}
if (this.wallpaperUrl) {
return `background-image: url('${this.wallpaperUrl}');`;
}