diff --git a/web/src/pages/events/EventInfo.ts b/web/src/pages/events/EventInfo.ts
index a540398ca..df8c384e8 100644
--- a/web/src/pages/events/EventInfo.ts
+++ b/web/src/pages/events/EventInfo.ts
@@ -35,12 +35,40 @@ export class EventInfo extends LitElement {
if (context === null) {
return html`-`;
}
- return html`
- - ${gettext("UID")}: ${context.pk as string}
- - ${gettext("Name")}: ${context.name as string}
- - ${gettext("App")}: ${context.app as string}
- - ${gettext("Model Name")}: ${context.model_name as string}
-
`;
+ return html`
+
+
-
+ ${gettext("UID")}
+
+
-
+
${context.pk as string}
+
+
+
+
-
+ ${gettext("Name")}
+
+
-
+
${context.name as string}
+
+
+
+
-
+ ${gettext("App")}
+
+
-
+
${context.app as string}
+
+
+
+
-
+ ${gettext("Model Name")}
+
+
-
+
${context.model_name as string}
+
+
+
`;
}
defaultResponse(): TemplateResult {