I have a text editor and type word and in that I need to add text that comes from a modal to this editor, with the two way data binding I can set the variable with the data that is coming from the modal and it inserts , but I add several text editors, and they are coming with the value of the first editor, I wanted to know how to fix this problem
<div class="row">
<div class="col-md-8">
<app-tinymce [(ngModel)]="descricao"></app-tinymce>
</div>
</div>