skopix 2.0.49 → 2.0.51
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 +5 -2
package/package.json
CHANGED
package/web/app/index.html
CHANGED
|
@@ -5633,8 +5633,11 @@ function renderPendingSteps(steps) {
|
|
|
5633
5633
|
}
|
|
5634
5634
|
|
|
5635
5635
|
async function loadLibraryView() {
|
|
5636
|
-
const [steps, pending] = await Promise.all([
|
|
5637
|
-
|
|
5636
|
+
const [steps, pending] = await Promise.all([
|
|
5637
|
+
fetchLibrarySteps().catch(() => []),
|
|
5638
|
+
fetchPendingSteps().catch(() => [])
|
|
5639
|
+
]);
|
|
5640
|
+
console.log('[pending] loadLibraryView got steps:', steps.length, 'pending:', pending.length);
|
|
5638
5641
|
renderPendingSteps(pending);
|
|
5639
5642
|
populateLibraryTagFilter();
|
|
5640
5643
|
renderLibrarySteps(steps);
|