Skip to content

Commit

Permalink
feature/WFNEWS-1936 display non fire of note when correct SOC is sele…
Browse files Browse the repository at this point in the history
…cted (#1585)
  • Loading branch information
ssylver93 authored Feb 6, 2024
1 parent ac2b12d commit eced61b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ export class FilterOptionsDialogComponent {
}

setFireOfNoteInd() {
this.filterData.fireOfNoteInd = !this.filterData.fireOfNoteInd;
// show fires that are not fire of note when this filter is unselected
if (this.filterData.fireOfNoteInd) this.filterData.fireOfNoteInd = null;
else this.filterData.fireOfNoteInd = true;
}

setFireCentre(fireCentre: number) {
Expand Down

0 comments on commit eced61b

Please sign in to comment.