feat: add cancel button to schedule task dialog actions

This commit is contained in:
Ivan Kalashnikov 2026-01-20 13:17:14 +07:00
parent 6ba28a5a33
commit 376675d209
2 changed files with 15 additions and 1 deletions

View file

@ -120,4 +120,12 @@
{{ T.F.TASK.D_SCHEDULE_TASK.SCHEDULE | translate }}
</button>
</div>
<button
class="dialog-cancel-btn"
mat-stroked-button
color="default"
(click)="close()"
>
{{ T.G.CANCEL | translate }}
</button>
</mat-dialog-actions>

View file

@ -119,7 +119,7 @@ mat-dialog-content {
width: 96%;
margin: 0 auto;
gap: 8px;
padding-bottom: 18px;
padding-bottom: 8px;
}
.dialog-actions-center button {
@ -127,3 +127,9 @@ mat-dialog-content {
min-width: 0;
max-width: 100%;
}
.dialog-cancel-btn {
display: block;
width: 96%;
margin: 0 auto 8px auto;
}