Merge pull request #6083 from harryadel/remove-kadira-dochead

Remove kadira:dochead
This commit is contained in:
Lauri Ojansivu 2026-01-21 13:33:50 +02:00 committed by GitHub
commit f38e3624cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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}`;
}
},