viberadar 0.3.226 → 0.3.227
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
|
@@ -8966,7 +8966,7 @@ function renderLoad(c) {
|
|
|
8966
8966
|
'<span class="load-status-badge load-status-error">✗ Ошибка</span>';
|
|
8967
8967
|
|
|
8968
8968
|
const summary = (loadState && loadState.summary) || {};
|
|
8969
|
-
const hasSummary = isDone && summary && Object.keys(summary).length > 0;
|
|
8969
|
+
const hasSummary = (isDone || hasErr) && summary && Object.keys(summary).length > 0;
|
|
8970
8970
|
const liveStats = getLoadLiveStats();
|
|
8971
8971
|
const elapsedText = liveStats.estimateMs ? `${formatLoadTime(liveStats.elapsedMs)} / ${formatLoadTime(liveStats.estimateMs)}` : formatLoadTime(liveStats.elapsedMs);
|
|
8972
8972
|
const chartEmpty = '<div class="load-chart-empty">Жду первые точки k6 metrics.ndjson</div>';
|