diff --git a/app/assets/javascripts/discourse/templates/components/notification-consent-banner.hbs b/app/assets/javascripts/discourse/templates/components/notification-consent-banner.hbs
index 639456d461d..463b1b4f179 100644
--- a/app/assets/javascripts/discourse/templates/components/notification-consent-banner.hbs
+++ b/app/assets/javascripts/discourse/templates/components/notification-consent-banner.hbs
@@ -1,8 +1,20 @@
{{#if showNotificationPromptBanner}}
- {{d-button icon="times" action="dismiss" class="btn btn-flat close" title="banner.close"}}
- {{i18n "user.desktop_notifications.consent_prompt"}} {{d-button display="link" action=(action "turnon") label="user.desktop_notifications.enable"}}.
+
+ {{i18n "user.desktop_notifications.consent_prompt"}}
+ {{d-button
+ display="link"
+ action=(action "turnon")
+ label="user.desktop_notifications.enable"
+ }}
+ .
+
+ {{d-button
+ icon="times"
+ action="dismiss"
+ class="btn btn-flat close" title="banner.close"
+ }}
{{/if}}