skopix 2.0.74 → 2.0.76
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/cli/commands/dashboard.js +1 -0
- package/package.json +1 -1
- package/web/app/index.html +2 -2
package/package.json
CHANGED
package/web/app/index.html
CHANGED
|
@@ -6061,7 +6061,7 @@ function renderPendingSteps(steps) {
|
|
|
6061
6061
|
}
|
|
6062
6062
|
|
|
6063
6063
|
async function loadLibraryView() {
|
|
6064
|
-
const [steps, pending
|
|
6064
|
+
const [steps, pending] = await Promise.all([
|
|
6065
6065
|
fetchLibrarySteps().catch(() => []),
|
|
6066
6066
|
fetchPendingSteps().catch(() => []),
|
|
6067
6067
|
fetchFolders().catch(() => [])
|
|
@@ -6069,7 +6069,7 @@ async function loadLibraryView() {
|
|
|
6069
6069
|
renderFolderTree('library-folder-tree', 'library', selectedLibraryFolder);
|
|
6070
6070
|
renderPendingSteps(pending);
|
|
6071
6071
|
populateLibraryTagFilter();
|
|
6072
|
-
|
|
6072
|
+
filterLibrarySteps(); // uses selectedLibraryFolder to filter
|
|
6073
6073
|
}
|
|
6074
6074
|
|
|
6075
6075
|
async function approvePendingUI(id) {
|