From b0e2b5d259d54fdfb3eb9fe036427fe2a74a0c47 Mon Sep 17 00:00:00 2001 From: daria <95225431+dariiing@users.noreply.github.com> Date: Mon, 25 Aug 2025 17:01:14 +0300 Subject: [PATCH] render icons on the loading page --- customize.dist/loading.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/customize.dist/loading.js b/customize.dist/loading.js index ae58549a6..4d8242e27 100644 --- a/customize.dist/loading.js +++ b/customize.dist/loading.js @@ -7,8 +7,9 @@ // text #3F4141 define([ '/customize/messages.js', + '/customize/fonts/lucide.js', 'less!/customize/src/less2/include/loading.less' -], function (Messages) { +], function (Messages, Lucide) { var urlArgs = window.location.href.replace(/^.*\?([^\?]*)$/, function (all, x) { return x; }); var elem = document.createElement('div'); elem.setAttribute('id', 'cp-loading'); @@ -100,6 +101,7 @@ define([ if (el2) { el2.innerHTML = makeList(data); } var el3 = document.querySelector('.cp-loading-progress-container'); if (el3) { el3.innerHTML = makeBar(data); } + Lucide.createIcons(); } catch (e) { } };