diff --git a/client/src/pages/Alerts.jsx b/client/src/pages/Alerts.jsx
index 2e8b28c..197b4ea 100644
--- a/client/src/pages/Alerts.jsx
+++ b/client/src/pages/Alerts.jsx
@@ -352,6 +352,7 @@ const Alerts = () => {
{t('alerts.type')} |
{t('alerts.recipient')} |
{t('alerts.rule')} |
+ {t('alerts.droneId')} |
{t('alerts.detection')} |
{t('alerts.message')} |
{t('alerts.sentAt')} |
@@ -383,6 +384,17 @@ const Alerts = () => {
{log.rule?.name || t('alerts.unknownRule')}
+
+
+ {log.detection?.drone_id ? (
+
+ {log.detection.drone_id}
+
+ ) : (
+ {t('alerts.na')}
+ )}
+
+ |
{log.detection_id ? (
|