diff options
Diffstat (limited to 'client/src/app/shared/shared-forms/markdown-textarea.component.html')
-rw-r--r-- | client/src/app/shared/shared-forms/markdown-textarea.component.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/src/app/shared/shared-forms/markdown-textarea.component.html b/client/src/app/shared/shared-forms/markdown-textarea.component.html index afb046c7f..5a9ff1a15 100644 --- a/client/src/app/shared/shared-forms/markdown-textarea.component.html +++ b/client/src/app/shared/shared-forms/markdown-textarea.component.html | |||
@@ -1,10 +1,9 @@ | |||
1 | <div class="root" [ngClass]="{ 'maximized': isMaximized }" [ngStyle]="{ 'max-width': textareaMaxWidth }"> | 1 | <div class="root" [ngClass]="{ 'maximized': isMaximized }"> |
2 | 2 | ||
3 | <textarea #textarea | 3 | <textarea #textarea |
4 | [(ngModel)]="content" (ngModelChange)="onModelChange()" | 4 | [(ngModel)]="content" (ngModelChange)="onModelChange()" |
5 | class="form-control" [ngClass]="{ 'input-error': formError }" | 5 | class="form-control" [ngClass]="{ 'input-error': formError }" |
6 | [attr.disabled]="disabled || null" | 6 | [attr.disabled]="disabled || null" |
7 | [ngStyle]="{ height: textareaHeight }" | ||
8 | [id]="name" [name]="name"> | 7 | [id]="name" [name]="name"> |
9 | </textarea> | 8 | </textarea> |
10 | 9 | ||