Skip to content

Commit

Permalink
Insights dashboard refactor (#6404)
Browse files Browse the repository at this point in the history
- reorganized dashboard components
- added share link
- health chart aggregated data
- refactored chart placeholders
  • Loading branch information
Tymek committed Mar 4, 2024
1 parent 493f8e8 commit 4fc0a80
Show file tree
Hide file tree
Showing 36 changed files with 563 additions and 400 deletions.
Expand Up @@ -12,7 +12,9 @@ export const allOption = { label: 'ALL', id: '*' };

interface IProjectSelectProps {
selectedProjects: string[];
onChange: Dispatch<SetStateAction<string[]>>;
onChange:
| Dispatch<SetStateAction<string[]>>
| ((projects: string[]) => void);
dataTestId?: string;
sx?: SxProps;
disabled?: boolean;
Expand Down

0 comments on commit 4fc0a80

Please sign in to comment.