Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stacklok/codegate-ui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0143e9ce93de33da66ed5740afb3326f8a451960
Choose a base ref
..
head repository: stacklok/codegate-ui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 341bf2c3266b9b9c96bcf24ec1e5f9d43d51b826
Choose a head ref
Showing with 390 additions and 2,390 deletions.
  1. +23 −368 package-lock.json
  2. +5 −3 package.json
  3. +1 −12 src/App.test.tsx
  4. +2 −2 src/components/CopyToClipboard.tsx
  5. +2 −2 src/components/Error.tsx
  6. +1 −1 src/components/HoverPopover.tsx
  7. +0 −372 src/components/ui/chart.tsx
  8. +2 −2 src/components/ui/sheet.tsx
  9. +3 −2 src/components/ui/sidebar.tsx
  10. +4 −3 src/features/alerts/components/__tests__/table-alerts.test.tsx
  11. +17 −0 src/features/alerts/components/alerts-summary-malicious-pkg.tsx
  12. +15 −0 src/features/alerts/components/alerts-summary-secrets.tsx
  13. +28 −0 src/features/alerts/components/alerts-summary-workspace-token-usage.tsx
  14. +51 −0 src/features/alerts/components/alerts-summary.tsx
  15. +1 −1 src/features/alerts/components/table-alert-token-usage.tsx
  16. +3 −3 src/features/alerts/components/table-alerts.tsx
  17. +9 −0 src/features/alerts/hooks/use-query-get-workspace-alerts-malicious-pkg.ts
  18. +9 −0 src/features/alerts/hooks/use-query-get-workspace-alerts-secrets.ts
  19. +29 −0 src/features/alerts/hooks/use-query-get-workspace-alerts.ts
  20. +31 −0 src/features/alerts/hooks/use-query-get-workspace-token-usage.ts
  21. +1 −1 src/features/alerts/lib/__tests__/is-alert-malicious.test.ts
  22. +22 −0 src/features/alerts/lib/filter-alerts-critical.ts
  23. +0 −7 src/features/alerts/lib/get-alert-token-usage.ts
  24. 0 src/features/alerts/lib/{is-malicious.ts → is-alert-malicious.ts}
  25. +12 −12 src/features/header/components/header-status-menu.tsx
  26. +3 −3 src/features/header/constants/certificate-menu-items.tsx
  27. +2 −2 src/features/header/constants/help-menu-items.tsx
  28. +12 −6 src/features/workspace/components/table-actions-workspaces.tsx
  29. +12 −4 src/features/workspace/components/workspace-custom-instructions.tsx
  30. +5 −4 src/features/workspace/components/workspaces-selection.tsx
  31. +0 −1,089 src/features/workspace/constants/monaco-theme.ts
  32. +3 −2 src/hooks/useAlertsData.ts
  33. +0 −33 src/hooks/useHelpContent.ts
  34. +1 −1 src/lib/utils.ts
  35. +23 −0 src/mocks/msw/handlers.ts
  36. +47 −53 src/routes/__tests__/route-dashboard.test.tsx
  37. +9 −14 src/routes/route-dashboard.tsx
  38. +2 −2 src/routes/route-workspaces.tsx
  39. +0 −82 src/viz/BarChart.tsx
  40. +0 −141 src/viz/LineChart.tsx
  41. +0 −163 src/viz/PieChart.tsx
Loading