source: src/Clients/Angular/finki-chattery/src/app/shared-app/components/question/respond-to-answer-dialog/respond-to-answer-dialog.component.html@ 53bebc0

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

Edit answer and answer response

  • Property mode set to 100644
File size: 828 bytes
Line 
1<h1 mat-dialog-title>{{ 'respond-to-answer-title' | translate }}</h1>
2<mat-dialog-content>
3 <form [formGroup]="formGroup">
4 <mat-form-field class="full-width margin-bottom-md" appearance="standard" appHandleInputFormErrors>
5 <textarea
6 matInput
7 autocomplete="off"
8 [placeholder]="'respond-to-answer-title-text-placeholder' | translate"
9 [formControl]="textField"
10 ></textarea>
11 </mat-form-field>
12 </form>
13</mat-dialog-content>
14<mat-dialog-actions>
15 <app-button class="margin-right-sm" [buttonType]="ButtonType.Basic" (action)="dialogRef.close()">
16 {{ 'close-button' | translate }}
17 </app-button>
18 <app-button [buttonType]="ButtonType.CallToAction" [disabled]="!formGroup.valid" (action)="submit()">
19 {{ 'submit-button' | translate }}
20 </app-button>
21</mat-dialog-actions>
Note: See TracBrowser for help on using the repository browser.