Remove kadira:dochead

This commit is contained in:
Harry Adel 2026-01-21 07:36:17 +02:00
parent a528a411da
commit f9e584e13c
7 changed files with 5 additions and 8 deletions

View file

@ -595,7 +595,7 @@ BlazeComponent.extendComponent({
this.setLoading(false);
}
DocHead.setTitle(productName);
document.title = productName;
},
toggleSupportPage() {

View file

@ -758,9 +758,9 @@ Utils = {
setCustomUI(data) {
const currentBoard = Utils.getCurrentBoard();
if (currentBoard) {
DocHead.setTitle(`${currentBoard.title} - ${data.productName}`);
document.title = `${currentBoard.title} - ${data.productName}`;
} else {
DocHead.setTitle(`${data.productName}`);
document.title = `${data.productName}`;
}
},