diff --git a/apps/admin/script.js b/apps/admin/script.js
index b75f178b..74466acb 100644
--- a/apps/admin/script.js
+++ b/apps/admin/script.js
@@ -42,10 +42,27 @@ window.addEventListener('load', function () {
} else if (description.type === 'textarea') {
return html`
-
+
${description.description}
-
-
+
+
`;
} else {
@@ -61,13 +78,17 @@ window.addEventListener('load', function () {
}
const user_template = (user, permissions) => html`
-
+
${user}: ${permissions.map((x) => permission_template(x))}
`;
const users_template = (users) =>
- html`
-
+ html`
${Object.entries(users).map((u) => user_template(u[0], u[1]))}
`;
diff --git a/apps/identity/app.js b/apps/identity/app.js
index aa577b73..6ed964af 100644
--- a/apps/identity/app.js
+++ b/apps/identity/app.js
@@ -116,16 +116,18 @@ async function main() {
` +
- ids
- .map(
- (id) => `-
+ ids
+ .map(
+ (
+ id
+ ) => `
-
${id}
`
- )
- .join('\n') +
- `
+ )
+ .join('\n') +
+ `