我有以下情况:
我有一个在两个不同地方使用的组件。这两个组件都有一个ngx羽毛笔编辑器。问题在于,一个组件中的所有图标都显示,而其他组件中只有7个。有谁知道是什么原因导致这个奇怪的问题?
您会看到编辑器的所有图标都在这里
,此处仅显示7
带有上述主轴编辑器的模板
<quill-editor id="post-content" [modules]="modules" [(ngModel)]="post.content" (blur)="onEditorBlured($event)"
[spellcheck]="true" name="postContent" (focus)="onEditorFocused($event)" formControlName="postContent"
(ready)="onEditorCreated($event)" (onEditorCreated)="onEditorCreated($event)" (change)="onContentChanged($event)"
(onContentChanged)="onContentChanged($event)"></quill-editor>