From 7308a19fe1729cb82cf94e37b0c878873ed73388 Mon Sep 17 00:00:00 2001 From: jannisvisser Date: Fri, 15 Mar 2024 10:36:10 +0100 Subject: [PATCH] fix: revert incorrect fix AB#26926 --- .../event-speech-bubble/event-speech-bubble.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/IBF-dashboard/src/app/components/event-speech-bubble/event-speech-bubble.component.html b/interfaces/IBF-dashboard/src/app/components/event-speech-bubble/event-speech-bubble.component.html index f99e3f3b4..8b54ca553 100644 --- a/interfaces/IBF-dashboard/src/app/components/event-speech-bubble/event-speech-bubble.component.html +++ b/interfaces/IBF-dashboard/src/app/components/event-speech-bubble/event-speech-bubble.component.html @@ -33,7 +33,7 @@ timeUnit: event.timeUnit, disasterTypeLabel: disasterTypeLabel, firstLeadTimeDate: event.firstLeadTimeDate, - firstTriggerLeadTimeDate: event.firstTriggerLeadTimeDate || event.firstLeadTimeDate, + firstTriggerLeadTimeDate: event.firstTriggerLeadTimeDate, eventName: event.eventName?.split('_')[0] || disasterTypeLabel, duration: event.duration, @@ -85,7 +85,7 @@ : { startDate: event.startDate, firstLeadTimeDate: event.firstLeadTimeDate, - firstTriggerLeadTimeDate: event.firstTriggerLeadTimeDate || event.firstLeadTimeDate, + firstTriggerLeadTimeDate: event.firstTriggerLeadTimeDate, eventName: event.eventName?.split('_')[0], leadTime: event.firstLeadTimeLabel, timeUnit: event.timeUnit,