diff --git a/app/assets/javascripts/discourse/app/controllers/application.js b/app/assets/javascripts/discourse/app/controllers/application.js index 4f94116e354..0a9b0e901dd 100644 --- a/app/assets/javascripts/discourse/app/controllers/application.js +++ b/app/assets/javascripts/discourse/app/controllers/application.js @@ -35,6 +35,10 @@ export default Controller.extend({ this.footer.showFooter = value; }, + get showPoweredBy() { + return this.showFooter && this.siteSettings.enable_powered_by_discourse; + }, + @discourseComputed canSignUp() { return ( @@ -59,11 +63,6 @@ export default Controller.extend({ return this.capabilities.isAppWebview || this.capabilities.isiOSPWA; }, - @discourseComputed - showPoweredBy() { - return this.showFooter && this.siteSettings.enable_powered_by_discourse; - }, - _mainOutletAnimate() { document.body.classList.remove("sidebar-animate"); },