skopix 2.0.44 → 2.0.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/web/app/index.html +2 -1
package/package.json
CHANGED
package/web/app/index.html
CHANGED
|
@@ -5604,7 +5604,7 @@ function renderPendingSteps(steps) {
|
|
|
5604
5604
|
return;
|
|
5605
5605
|
}
|
|
5606
5606
|
|
|
5607
|
-
section.style.display = '';
|
|
5607
|
+
section.style.display = 'block';
|
|
5608
5608
|
updatePendingBadge(steps.length);
|
|
5609
5609
|
if (countLabel) countLabel.textContent = `${steps.length} element${steps.length > 1 ? 's' : ''} waiting`;
|
|
5610
5610
|
|
|
@@ -5631,6 +5631,7 @@ function renderPendingSteps(steps) {
|
|
|
5631
5631
|
}
|
|
5632
5632
|
|
|
5633
5633
|
async function loadLibraryView() {
|
|
5634
|
+
await new Promise(r => setTimeout(r, 50)); // ensure view is visible
|
|
5634
5635
|
const [steps, pending] = await Promise.all([fetchLibrarySteps(), fetchPendingSteps()]);
|
|
5635
5636
|
populateLibraryTagFilter();
|
|
5636
5637
|
renderPendingSteps(pending);
|