@atolis-hq/wake 0.2.63 → 0.2.64
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.
|
@@ -156,7 +156,7 @@ export const indexHtml = `<!DOCTYPE html>
|
|
|
156
156
|
const API = '/api/v1';
|
|
157
157
|
const CONDITIONS = ['ready', 'scheduled', 'active', 'needs-human', 'error', 'finished'];
|
|
158
158
|
let currentView = 'board';
|
|
159
|
-
let analyticsWindow = '
|
|
159
|
+
let analyticsWindow = '1d';
|
|
160
160
|
let analyticsMetric = 'runs-over-time';
|
|
161
161
|
let activeViewRequest = null;
|
|
162
162
|
let activeViewRequestId = 0;
|
|
@@ -425,7 +425,7 @@ const metricsMetrics = new Set([
|
|
|
425
425
|
'work-item-totals',
|
|
426
426
|
]);
|
|
427
427
|
function parseMetricsWindow(value) {
|
|
428
|
-
return metricsWindows.has(value) ? value : '
|
|
428
|
+
return metricsWindows.has(value) ? value : '1d';
|
|
429
429
|
}
|
|
430
430
|
function parseMetricsMetric(value) {
|
|
431
431
|
return metricsMetrics.has(value) ? value : 'runs-over-time';
|
package/dist/src/version.js
CHANGED