Skip to content

Commit

Permalink
Merge pull request #790 from bcgov/oleks
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
ychung-mot authored Nov 18, 2024
2 parents 6a04cad + 7155ef4 commit dd833ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ <h2 class="title">Listings</h2>
{{ row.lastActionNm || '-'}}
</td>
<td>
{{ row.lastActionDtm? '-': row.lastActionDtm |date }}
{{ row.lastActionDtm? (row.lastActionDtm |date) : '-' }}
</td>
</tr>
</ng-template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ <h4>Send a message to all hosts of the listings selected below. All fields are r
<span class="info-tooltip" [tooltipOptions]="tooltipOptions" pTooltip="Enter additional email addresses in the BCC field
separated by commas—this will be copied on all
emails to selected listings" tooltipPosition="top" placeholder="Top"></span>
<label for="ccList">Add BCCs</label>
<label for="ccList">Add BCCs (Optional)</label>
</div>
<div class="form-group-row-col">
<textarea formControlName="ccList" placeholder="Enter Emails Here..." rows="1" cols="20" pInputTextarea
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export class SendComplianceOrderComponent implements OnInit {

private initForm(): void {
this.myForm = this.fb.group({
ccList: ['', [Validators.required, validateEmailListString()]],
ccList: ['', [validateEmailListString()]],
comment: ['', [Validators.required]],
});
}
Expand Down

0 comments on commit dd833ae

Please sign in to comment.