Skip to content

Commit

Permalink
Image upload detection fix (#223)
Browse files Browse the repository at this point in the history
* TypeScript Fix

* Fixed Text Change Detection
  • Loading branch information
ptvrajsk authored Oct 6, 2019
1 parent dac411b commit dca3162
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h3 class="mat-title">Tester's Response</h3>
</div>
<div *ngIf="isEditing">
<app-comment-editor [commentField]="testerResponseForm.get(i.toString())" [commentForm]="testerResponseForm"
(change)="handleChangeOfText($event, response.reasonForDiagreement, i)" [id]="i.toString()"></app-comment-editor>
(change)="handleChangeOfText($event, response.reasonForDiagreement, i)" [id]="i.toString()" (focusout)="handleChangeOfText($event, response.reasonForDiagreement, i)"></app-comment-editor>
</div>
<br> <markdown data="-------------------"></markdown> <br>
</div>
Expand Down

0 comments on commit dca3162

Please sign in to comment.