skopix 2.0.48 → 2.0.50
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 +3 -1
package/package.json
CHANGED
package/web/app/index.html
CHANGED
|
@@ -5596,7 +5596,8 @@ function renderPendingSteps(steps) {
|
|
|
5596
5596
|
const section = document.getElementById('library-pending-section');
|
|
5597
5597
|
const list = document.getElementById('pending-steps-list');
|
|
5598
5598
|
const countLabel = document.getElementById('pending-count-label');
|
|
5599
|
-
|
|
5599
|
+
console.log('[pending] renderPendingSteps called, steps:', steps?.length, 'section:', !!section);
|
|
5600
|
+
if (!section || !list) { console.warn('[pending] missing elements!'); return; }
|
|
5600
5601
|
|
|
5601
5602
|
if (!steps || steps.length === 0) {
|
|
5602
5603
|
section.style.display = 'none';
|
|
@@ -5604,6 +5605,7 @@ function renderPendingSteps(steps) {
|
|
|
5604
5605
|
return;
|
|
5605
5606
|
}
|
|
5606
5607
|
|
|
5608
|
+
console.log('[pending] showing section with', steps.length, 'steps');
|
|
5607
5609
|
section.style.display = 'block';
|
|
5608
5610
|
updatePendingBadge(steps.length);
|
|
5609
5611
|
if (countLabel) countLabel.textContent = `${steps.length} element${steps.length > 1 ? 's' : ''} waiting`;
|