Skip to content

Commit

Permalink
Merge pull request #1859 from ksprabin/EMBCESSMOD-4682
Browse files Browse the repository at this point in the history
EMBCESSMOD-4682
  • Loading branch information
KyleKayfish authored Jan 26, 2024
2 parents 24e76d0 + bf53740 commit 8390498
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,14 @@ export class DashboardActivateGuard implements CanActivate {
?.evacueeSearchParameters !== null &&
this.evacueeSearchService?.evacueeSearchContext
?.evacueeSearchParameters !== undefined
);
) || (
selectedFileId !== null &&
selectedFileId !== undefined &&
this.evacueeSearchService?.evacueeSearchContext
?.evacueeSearchParameters !== null &&
this.evacueeSearchService?.evacueeSearchContext
?.evacueeSearchParameters !== undefined
);
}
}
}

0 comments on commit 8390498

Please sign in to comment.