viberadar 0.3.90 → 0.3.91

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.
@@ -2982,7 +2982,7 @@ function renderObsGlobalDetail(c, filterFeatureKey) {
2982
2982
  const expandBtn = hasAgent ? `<button class="obs-expand-btn" onclick="event.stopPropagation();toggleObsDetail('${groupId}')">▼</button>` : '';
2983
2983
  const totalFPs = items.reduce((s,m) => s + m.failurePoints.length, 0);
2984
2984
  const detailItems = items.map(m => {
2985
- const globalIdx = missingV2.indexOf(m); // index in full unfiltered array — must match server's missingCriticalLogsV2
2985
+ const globalIdx = (o.missingCriticalLogsV2 || []).indexOf(m); // index in full unfiltered array — must match server's missingCriticalLogsV2
2986
2986
  const fpCount = m.failurePoints.length;
2987
2987
  const fpPreview = m.failurePoints.slice(0,3).map(fp =>
2988
2988
  `<div class="obs-fp-item"><span class="obs-fp-type">${fpTypeLabels[fp.type]||fp.type}</span><span class="obs-fp-line">~${fp.lineApprox}</span></div>`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "viberadar",
3
- "version": "0.3.90",
3
+ "version": "0.3.91",
4
4
  "description": "Live module map with test coverage for vibecoding projects",
5
5
  "main": "./dist/cli.js",
6
6
  "bin": {