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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skopix",
3
- "version": "2.0.44",
3
+ "version": "2.0.45",
4
4
  "description": "Browser-based QA tool — record tests by using your app, replay them deterministically, generate Playwright code automatically",
5
5
  "main": "cli/index.js",
6
6
  "bin": {
@@ -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);