<trix-editor angular-trix ng-model="editedComment.text" class="trix-content editable-trix-editor"></trix-editor>
To your code add ng-if=”true” so it will look now :
<trix-editor ng-if="true" angular-trix ng-model="editedComment.text" class="trix-content editable-trix-editor"></trix-editor>
and it solves the problem.
I got the solution. I have to write ng-if='true'
. which has solved my problem