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
2 changed files with 2 additions and 5 deletions
File diff suppressed because one or more lines are too long
+1 -4
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
}
}
})