Add option to show known issues scatterplot
Test and deploy / deploy (push) Successful in 30s

This commit is contained in:
2026-07-29 13:12:46 -05:00
parent b36247faf4
commit cb6ce0b3c5
15 changed files with 192 additions and 37 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import {
initializeTree,
renderProductTree,
restoreTreeState,
selectAddressedRelease
selectIssueRelease
} from './tree.js';
import { applyIssueSearchFilter, getIssueTypeFilters, initializeUI } from './ui.js';
import { expandFilePrefixLevel } from './product-tree-model.js';
@@ -33,7 +33,7 @@ function loadProductTree() {
await renderProductTree(productsData);
restoreTreeState();
const params = new URLSearchParams(window.location.search);
selectAddressedRelease(params.get('product'), params.get('release'));
selectIssueRelease(params.get('product'), params.get('release'), params.get('type'));
refreshIssuesForCurrentSelection();
})
.catch(error => console.error('Error loading products:', error));