lint
This commit is contained in:
parent
0a7a2f0da4
commit
7ac4729dec
1 changed files with 6 additions and 1 deletions
|
|
@ -136,7 +136,12 @@ export default {
|
||||||
return this.currentUser.background_image
|
return this.currentUser.background_image
|
||||||
},
|
},
|
||||||
background() {
|
background() {
|
||||||
return this.userBackground || (this.mergedConfig.hideInstanceWallpaper ? null : this.instanceBackground)
|
return (
|
||||||
|
this.userBackground ||
|
||||||
|
(this.mergedConfig.hideInstanceWallpaper
|
||||||
|
? null
|
||||||
|
: this.instanceBackground)
|
||||||
|
)
|
||||||
},
|
},
|
||||||
bgStyle() {
|
bgStyle() {
|
||||||
if (this.background) {
|
if (this.background) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue