feat: footer remove site_title condition (#3557)

This commit is contained in:
dni ⚡ 2025-11-24 10:38:17 +01:00 committed by GitHub
parent 44985cb0d1
commit 152c1dbb74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 5 deletions

File diff suppressed because one or more lines are too long

View file

@ -9,10 +9,7 @@ window.app.component('lnbits-footer', {
return `${this.SITE_TITLE}, ${this.SITE_TAGLINE}`
},
showFooter() {
return (
this.SITE_TITLE == 'LNbits' &&
this.LNBITS_SHOW_HOME_PAGE_ELEMENTS == true
)
return this.LNBITS_SHOW_HOME_PAGE_ELEMENTS == true
}
}
})