Skip to content

Commit

Permalink
fix: add check for floods AB#26926
Browse files Browse the repository at this point in the history
  • Loading branch information
arsforza committed Mar 22, 2024
1 parent f61b10d commit 0354295
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ export class EventSpeechBubbleComponent implements AfterViewChecked, OnDestroy {
return true;
}

if (this.disasterTypeName !== DisasterTypeKey.floods) {
return true;
}

if (this.event.firstLeadTime !== this.event.firstTriggerLeadTime) {
return true;
}
Expand Down

0 comments on commit 0354295

Please sign in to comment.