I impelement it into the template with:
<quill-editor [(ngModel)]="pkgTexts.Content" [options]="editorConfig" (change)="pkgTexts.Content = $event.text"> </quill-editor>
When I enter text, it is like RTL, [Space] is completely ignored and [Enter] removes any stylings. Prior to my update, everything looked fine and worked as it should.
Hi folks,
I have the latest versions of ngx-quill-editor and @types-quill installed, and use the editor with the following configuration:
this.editorConfig = { debug: 'info', theme: 'bubble', placeholder: 'Insert text here...' };
and everything looks fine.
I impelement it into the template with:
<quill-editor [(ngModel)]="pkgTexts.Content" [options]="editorConfig" (change)="pkgTexts.Content = $event.text"> </quill-editor>
When I enter text, it is like RTL, [Space] is completely ignored and [Enter] removes any stylings. Prior to my update, everything looked fine and worked as it should.
Thank you in advance & regards