mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
DEV: ensures application.hbs is using router currentPath (#7929)
This commit is contained in:
parent
e444ce7ccd
commit
e83dcfdb7b
|
@ -4,6 +4,7 @@ import { isAppWebview, isiOSPWA } from "discourse/lib/utilities";
|
|||
export default Ember.Controller.extend({
|
||||
showTop: true,
|
||||
showFooter: false,
|
||||
router: Ember.inject.service(),
|
||||
|
||||
@computed
|
||||
canSignUp() {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
toggleAnonymous=(route-action "toggleAnonymous")
|
||||
logout=(route-action "logout")}}
|
||||
|
||||
{{plugin-outlet name="below-site-header" args=(hash currentPath=currentPath)}}
|
||||
{{plugin-outlet name="below-site-header" args=(hash currentPath=router._router.currentPath)}}
|
||||
|
||||
<div id="main-outlet" class="wrap">
|
||||
{{plugin-outlet name="above-main-container"}}
|
||||
|
@ -18,7 +18,7 @@
|
|||
{{notification-consent-banner}}
|
||||
{{global-notice}}
|
||||
{{create-topics-notice}}
|
||||
{{plugin-outlet name="top-notices" args=(hash currentPath=currentPath)}}
|
||||
{{plugin-outlet name="top-notices" args=(hash currentPath=router._router.currentPath)}}
|
||||
</div>
|
||||
{{outlet}}
|
||||
{{outlet "user-card"}}
|
||||
|
|
Loading…
Reference in New Issue
Block a user