UI: Fixed incorrect insert link in tinymce editor

This commit is contained in:
Vladyslav_Prykhodko 2024-12-30 11:27:48 +02:00
parent cf9204416b
commit 5623b3ed7a
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;