From 7803122a8eaa4251c4a119f391f13c2bc21b9bfb Mon Sep 17 00:00:00 2001
From: Alexander Borg
| {t('alerts.status')} | @@ -397,14 +417,30 @@ const Alerts = () => {|
|---|---|
|
+ {relatedAlerts.length > 0 && (
+
+ )}
{getStatusIcon(primaryAlert.status)}
{primaryAlert.status}
{relatedAlerts.length > 0 && (
-
+
+
)}
|
@@ -413,7 +449,7 @@ const Alerts = () => {
{primaryAlert.alert_type}
- {relatedAlerts.map((alert, idx) => (
+ {!expandedGroups.has(groupIndex) && relatedAlerts.map((alert, idx) => (
{alert.alert_type}
@@ -423,7 +459,7 @@ const Alerts = () => {
{primaryAlert.recipient}
- {relatedAlerts.length > 0 && relatedAlerts.some(a => a.recipient !== primaryAlert.recipient) && (
+ {!expandedGroups.has(groupIndex) && relatedAlerts.length > 0 && relatedAlerts.some(a => a.recipient !== primaryAlert.recipient) && (
+{relatedAlerts.filter(a => a.recipient !== primaryAlert.recipient).length} others
@@ -483,8 +519,8 @@ const Alerts = () => {
|
|
@@ -563,6 +599,7 @@ const Alerts = () => {
|