Web: Components: fixed InifiniteLoader crash

This commit is contained in:
Nikita Gopienko 2022-09-28 13:41:25 +03:00
parent 6b3189e1ca
commit eb66d3bf57

View File

@ -2,7 +2,7 @@ let timer = null;
const startInterval = () => {
const elem = document.getElementById("infinite-page-loader");
elem.style.display = "block";
if (elem) elem.style.display = "block";
};
export function showLoader() {