source: src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/edit-answer-dialog/edit-answer-dialog.component.html@ 9df3069

dev
Last change on this file since 9df3069 was 9df3069, checked in by Стојков Марко <mst@…>, 3 years ago

Edit answer and answer response

  • Property mode set to 100644
File size: 596 bytes
Line 
1<h1 mat-dialog-title>{{ 'edit-answer-title' | translate }}</h1>
2<mat-dialog-content>
3 <form [formGroup]="formGroup">
4 <app-text-editor [textForm]="textField" [text]="this.textFieldValue"></app-text-editor>
5 </form>
6</mat-dialog-content>
7<mat-dialog-actions>
8 <app-button class="margin-right-sm" [buttonType]="ButtonType.Basic" (action)="dialogRef.close()">
9 {{ 'close-button' | translate }}
10 </app-button>
11 <app-button [buttonType]="ButtonType.CallToAction" [disabled]="!formGroup.valid" (action)="submit()">
12 {{ 'submit-button' | translate }}
13 </app-button>
14</mat-dialog-actions>
Note: See TracBrowser for help on using the repository browser.