Skip to content

Commit

Permalink
Merge pull request #1738 from bcgov/bugfix/ALCS-2002
Browse files Browse the repository at this point in the history
Only show decision CC field if not already released
  • Loading branch information
trslater authored Jun 3, 2024
2 parents b979358 + ab27bf2 commit abda6be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ <h2 class="card-title">Confirm Release Decision</h2>
<span *ngIf="wasReleased">No auto-emails will be sent</span>
</div>
</div>
<div style="margin-top: 24px;">
<div style="margin-bottom: 4px;">
<div *ngIf="!wasReleased" style="margin-top: 24px">
<div style="margin-bottom: 4px">
<mat-label>CC additional recipients on decision release email (optional):</mat-label>
</div>
<mat-form-field style="width: 100%" appearance="outline">
Expand Down Expand Up @@ -54,7 +54,7 @@ <h2 class="card-title">Confirm Release Decision</h2>

<mat-dialog-actions align="end">
<div class="button-container">
<button mat-stroked-button color="primary" [mat-dialog-close]="{confirmed: false}">Cancel</button>
<button mat-stroked-button color="primary" [mat-dialog-close]="{ confirmed: false }">Cancel</button>
<button mat-flat-button color="primary" type="button" (click)="onRelease()">Release decision</button>
</div>
</mat-dialog-actions>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2 class="card-title">Confirm Release Decision</h2>
<span *ngIf="wasReleased">No auto-emails will be sent</span>
</div>
</div>
<div style="margin-top: 24px">
<div *ngIf="!wasReleased" style="margin-top: 24px">
<div style="margin-bottom: 4px">
<mat-label>CC additional recipients on decision release email (optional):</mat-label>
</div>
Expand Down

0 comments on commit abda6be

Please sign in to comment.