diff --git a/app/assets/javascripts/discourse/app/templates/preferences/security.hbs b/app/assets/javascripts/discourse/app/templates/preferences/security.hbs
index af2308afad7..d53c01fefab 100644
--- a/app/assets/javascripts/discourse/app/templates/preferences/security.hbs
+++ b/app/assets/javascripts/discourse/app/templates/preferences/security.hbs
@@ -94,13 +94,15 @@
{{#if this.showAllAuthTokens}}
{{d-icon "caret-up"}}
- {{i18n "user.auth_tokens.show_few"}}
+ {{i18n "user.auth_tokens.show_few"}}
{{else}}
{{d-icon "caret-down"}}
- {{i18n
- "user.auth_tokens.show_all"
- count=this.model.user_auth_tokens.length
- }}
+
+ {{i18n
+ "user.auth_tokens.show_all"
+ count=this.model.user_auth_tokens.length
+ }}
+
{{/if}}
{{/if}}
@@ -109,7 +111,12 @@
href
{{on "click" (fn this.revokeAuthToken null)}}
class="pull-right text-danger"
- >{{d-icon "sign-out-alt"}} {{i18n "user.auth_tokens.log_out_all"}}
+ >
+ {{d-icon "sign-out-alt"}}
+
+ {{i18n "user.auth_tokens.log_out_all"}}
+
+
{{/if}}