Merge pull request #12354 from vvlladd28/bug/tinymce/reletive-link

Fixed incorrect auto-conversion of inserted links in TinyMCE editor
This commit is contained in:
Igor Kulikov 2024-12-30 12:45:02 +02:00 committed by GitHub
commit 71240c756b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -63,7 +63,9 @@ export class EditorPanelComponent implements OnInit {
const uiContainer = document.querySelector('.tox.tox-tinymce-aux');
container.parentNode.appendChild(uiContainer);
});
}
},
relative_urls: false,
urlconverter_callback: (url) => url
};
constructor(private fb: FormBuilder) {

View File

@ -95,7 +95,8 @@ export class NotificationTemplateConfigurationComponent implements OnDestroy, Co
autofocus: false,
branding: false,
promotion: false,
relative_urls: false
relative_urls: false,
urlconverter_callback: (url) => url
};
private propagateChange = null;