diff --git a/frontend/src/components/Table/Formatter/EventFormatter.tsx b/frontend/src/components/Table/Formatter/EventFormatter.tsx
index c081858f..806f2200 100644
--- a/frontend/src/components/Table/Formatter/EventFormatter.tsx
+++ b/frontend/src/components/Table/Formatter/EventFormatter.tsx
@@ -1,4 +1,4 @@
-import { IconArrowsCross, IconBolt, IconBoltOff, IconDisc, IconLock, IconUser } from "@tabler/icons-react";
+import { IconArrowsCross, IconBolt, IconBoltOff, IconDisc, IconLock, IconShield, IconUser } from "@tabler/icons-react";
 import type { AuditLog } from "src/api/backend";
 import { DateTimeFormat, T } from "src/locale";
 
@@ -13,6 +13,8 @@ const getEventValue = (event: AuditLog) => {
 			return event.meta?.domainNames?.join(", ") || "N/A";
 		case "stream":
 			return event.meta?.incomingPort || "N/A";
+		case "certificate":
+			return event.meta?.domainNames?.join(", ") || event.meta?.niceName || "N/A";
 		default:
 			return `UNKNOWN EVENT TYPE: ${event.objectType}`;
 	}
@@ -51,6 +53,9 @@ const getIcon = (row: AuditLog) => {
 		case "access-list":
 			ico =