Skip to content

Commit

Permalink
upcoming: [DI-19062] - Dashboard Select component in cloudpulse globa…
Browse files Browse the repository at this point in the history
…l filters view
  • Loading branch information
nikhagra-akamai committed Jun 19, 2024
1 parent aba91f6 commit 8ec35ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/api-v4/src/cloudpulse/dashboards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ export const getDashboards = () =>
setHeaders({
Authorization: '', //Authorization will be updated once the end-point is ready, till then will use mock data
})
);
);
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const GlobalFilters = React.memo((props: GlobalFilterProperties) => {
[]
);

const handleRegionChange = React.useCallback((region: string | undefined) => {
const handleRegionChange = React.useCallback((region: string | null) => {
setRegion(region);
}, []);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface CloudPulseResourcesSelectProps {
defaultSelection?: number[];
handleResourcesSelection: (resources: CloudPulseResources[]) => void;
placeholder?: string;
region: string | undefined;
region: string | null;
resourceType: string | undefined;
}

Expand Down

0 comments on commit 8ec35ac

Please sign in to comment.