We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ad627 commit 7bfce78Copy full SHA for 7bfce78
src/components/HintsCardsRow/GenericHintCard/genericHintConfigs.ts
@@ -16,7 +16,6 @@ export const useCrossplaneHintConfig = (): GenericHintConfig => {
16
subtitle: t('Hints.CrossplaneHint.subtitle'),
17
iconSrc: '/crossplane-icon.png',
18
iconAlt: 'Crossplane',
19
- scrollTarget: '.crossplane-table-element',
20
calculateSegments: (allItems, isLoading, error, enabled) =>
21
calculateCrossplaneSegments(allItems, isLoading, error, enabled, t),
22
calculateHoverData: (allItems, enabled) => calculateCrossplaneHoverDataGeneric(allItems, enabled, t),
@@ -31,7 +30,6 @@ export const useGitOpsHintConfig = (): GenericHintConfig => {
31
30
subtitle: t('Hints.GitOpsHint.subtitle'),
32
iconSrc: '/flux.png',
33
iconAlt: 'Flux',
34
- scrollTarget: '.cp-page-section-gitops',
35
36
calculateGitOpsSegments(allItems, isLoading, error, enabled, t),
37
calculateHoverData: (allItems, enabled) => calculateGitOpsHoverDataGeneric(allItems, enabled, t),
src/types/types.ts
@@ -36,7 +36,6 @@ export interface GenericHintConfig {
iconSrc: string;
iconAlt: string;
38
iconStyle?: React.CSSProperties;
39
- scrollTarget?: string;
40
calculateSegments: GenericHintSegmentCalculator;
41
calculateHoverData?: HoverDataCalculator;
42
renderHoverContent?: (allItems: ManagedResourceItem[], enabled: boolean) => ReactNode;
0 commit comments