* Fix routetail + config subrouting * Do not update panel when loading a new one * Fix init skeleton not removed during loading
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
export const removeInitSkeleton = () => {
|
|
const initEl = document.getElementById("ha-init-skeleton");
|
|
if (initEl) {
|
|
initEl.parentElement!.removeChild(initEl);
|
|
}
|
|
};
|