Skip to content

Commit

Permalink
Merge pull request #519 from unicef/develop
Browse files Browse the repository at this point in the history
#develop
  • Loading branch information
danNordlogic authored Jan 13, 2025
2 parents f5733e0 + b3d2e30 commit 974ae65
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ export class MonitorInformationCard extends BaseDetailsCard {
dynamic-align
></etools-dropdown>
</div>
<div class="row">
<div class="row layout-vertical">
<span
class="warning"
class="col-md-6 col-12 warning"
?hidden=${!this.showReportReviewerWarning(
this.editedData.team_members,
this.editedData?.report_reviewers
Expand Down Expand Up @@ -367,7 +367,7 @@ export class MonitorInformationCard extends BaseDetailsCard {
}

showReportReviewerWarning(teamMembers: any, reportReviewers: any) {
if (!teamMembers || !!teamMembers.length || !reportReviewers || !reportReviewers.length) {
if (!teamMembers || !teamMembers.length || !reportReviewers || !reportReviewers.length) {
return false;
}
const members = simplifyValue(teamMembers);
Expand Down

0 comments on commit 974ae65

Please sign in to comment.