Skip to content

Commit

Permalink
work for #7252 fix angular build
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaLarina committed Nov 8, 2023
1 parent be1665a commit e635438
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[disabled]="question.isInputReadOnly"
(change)="onOtherValueChange($event)"
(input)="onOtherValueInput($event)"
(compositionupdate)="model.onCompositionUpdateOtherValue($event)"
(compositionupdate)="question.onCompositionUpdateOtherValue($event)"
[class]="question.cssClasses.other">
</textarea>
<div *ngIf="question.isReadOnlyRenderDiv()">{{ otherValue }}</div>
2 changes: 1 addition & 1 deletion packages/survey-angular-ui/src/comment.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[disabled]="question.isInputReadOnly"
(change)="question.onCommentChange($event)"
(input)="question.onCommentInput($event)"
(compositionupdate)="model.onCompositionUpdateComment($event)"
(compositionupdate)="question.onCompositionUpdateComment($event)"
[class]="question.cssClasses.other">
</textarea>
<div *ngIf="question.isReadOnlyRenderDiv()">{{ question.comment }}</div>

0 comments on commit e635438

Please sign in to comment.