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 e635438 commit 4e1f88b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
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)="question.onCompositionUpdateOtherValue($event)"
(compositionupdate)="onCompositionUpdateOtherValue($event)"
[class]="question.cssClasses.other">
</textarea>
<div *ngIf="question.isReadOnlyRenderDiv()">{{ otherValue }}</div>
3 changes: 3 additions & 0 deletions packages/survey-angular-ui/src/comment-other.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ export class SurveyCommentOtherComponent {
public onOtherValueInput(event: any): void {
(<QuestionSelectBase>this.question).onOtherValueInput(event);
}
public onCompositionUpdateOtherValue(event: any): void {
(<QuestionSelectBase>this.question).onCompositionUpdateOtherValue(event);
}
public get otherId(): string {
return (<QuestionSelectBase>this.question).otherId;
}
Expand Down

0 comments on commit 4e1f88b

Please sign in to comment.