viberadar 0.3.178 → 0.3.179
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 +3 -0
- package/package.json +1 -1
package/dist/ui/dashboard.html
CHANGED
|
@@ -1749,6 +1749,7 @@ const modeStore = {
|
|
|
1749
1749
|
scenarios: { view: 'list', searchQuery: '', activeTypes: new Set(), drillFeatureKey: null, drillTestType: null, activePanelKey: null, showOnlyUntestedInFeature: false, testNavType: 'all', testNavFeature: null, testNavProblem: null },
|
|
1750
1750
|
services: { view: 'graph', searchQuery: '', activeTypes: new Set(), drillFeatureKey: null, drillTestType: null, activePanelKey: null, showOnlyUntestedInFeature: false, testNavType: 'all', testNavFeature: null, testNavProblem: null, svcTab: 'graph' },
|
|
1751
1751
|
load: { view: 'features', searchQuery: '', activeTypes: new Set(), drillFeatureKey: null, drillTestType: null, activePanelKey: null, showOnlyUntestedInFeature: false, testNavType: 'all', testNavFeature: null, testNavProblem: null },
|
|
1752
|
+
probe: { view: 'features', searchQuery: '', activeTypes: new Set(), drillFeatureKey: null, drillTestType: null, activePanelKey: null, showOnlyUntestedInFeature: false, testNavType: 'all', testNavFeature: null, testNavProblem: null },
|
|
1752
1753
|
};
|
|
1753
1754
|
|
|
1754
1755
|
function getModeFromPath(pathname = window.location.pathname) {
|
|
@@ -1756,6 +1757,7 @@ function getModeFromPath(pathname = window.location.pathname) {
|
|
|
1756
1757
|
if (pathname.startsWith('/radar/docs')) return 'docs';
|
|
1757
1758
|
if (pathname.startsWith('/radar/services')) return 'services';
|
|
1758
1759
|
if (pathname.startsWith('/radar/load')) return 'load';
|
|
1760
|
+
if (pathname.startsWith('/radar/probe')) return 'probe';
|
|
1759
1761
|
return 'qa';
|
|
1760
1762
|
}
|
|
1761
1763
|
|
|
@@ -1764,6 +1766,7 @@ function routePathForMode(mode) {
|
|
|
1764
1766
|
if (mode === 'docs') return '/radar/docs';
|
|
1765
1767
|
if (mode === 'services') return '/radar/services';
|
|
1766
1768
|
if (mode === 'load') return '/radar/load';
|
|
1769
|
+
if (mode === 'probe') return '/radar/probe';
|
|
1767
1770
|
return '/radar/qa';
|
|
1768
1771
|
}
|
|
1769
1772
|
|