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.
- package/dist/ui/dashboard.html +1 -1
- package/package.json +1 -1
package/dist/ui/dashboard.html
CHANGED
|
@@ -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 =
|
|
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>`
|