There is an extra dividing line in the edit box
patui opened this issue · 3 comments
patui commented
instance-oom commented
It's editor's print-margin line.
If you want to hidden this line, you can handle it in onEditorLoaded
like this
<md-editor (onEditorLoaded)="onEditorLoaded($event)"></md-editor>
onEditorLoaded(editor) {
editor.setShowPrintMargin(false);
}
patui commented
thank you very much。