diff --git a/core/client.js b/core/client.js
index 3be7173b..4646d93d 100644
--- a/core/client.js
+++ b/core/client.js
@@ -145,11 +145,17 @@ class TfNavigationElement extends LitElement {
This app has the following permissions:
${Object.keys(this.permissions).map(
(key) => html`
-
- ${key}: ${this.permissions[key] ? '✅ Allowed' : '❌ Denied'}
-
-
- `
+
+ ${key}:
+ ${this.permissions[key] ? '✅ Allowed' : '❌ Denied'}
+
+
+ `
)}