Make app-name link to landing page and change the start page to what-is-hawkbit.md

This commit is contained in:
Desislava Marinova
2026-03-25 17:43:15 +02:00
parent f2615fe812
commit 055d73c1fe
2 changed files with 6 additions and 2 deletions

View File

@@ -62,8 +62,12 @@ SPDX-License-Identifier: EPL-2.0
svgEl.setAttribute('width', '200');
svgEl.removeAttribute('height');
svgEl.style.setProperty('--logo-color', '#F0EEEA');
var link = el.querySelector('a') || document.createElement('a');
link.href = '#/';
link.innerHTML = '';
link.appendChild(svgEl);
el.innerHTML = '';
el.appendChild(svgEl);
el.appendChild(link);
});
});
}