File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Shared/Components/GenericInfoCard Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ export const URLS = {
85
85
COMPARE_CLUSTERS : '/compare-clusters' ,
86
86
GLOBAL_CONFIG_TEMPLATES_DEVTRON_APP ,
87
87
GLOBAL_CONFIG_TEMPLATES_DEVTRON_APP_CREATE : `${ GLOBAL_CONFIG_TEMPLATES_DEVTRON_APP } /create` ,
88
+ // NOTE: using appId since we are re-using AppConfig component
88
89
GLOBAL_CONFIG_TEMPLATES_DEVTRON_APP_DETAIL : `${ GLOBAL_CONFIG_TEMPLATES_DEVTRON_APP } /detail/:appId` ,
89
90
}
90
91
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export enum GenericInfoCardBorderVariant {
25
25
export type GenericInfoCardProps = { borderVariant : GenericInfoCardBorderVariant } & (
26
26
| ( {
27
27
isLoading : true
28
- } & Partial < BaseGenericInfoCardProps > )
28
+ } & Partial < Record < keyof BaseGenericInfoCardProps , never > > )
29
29
| ( {
30
30
isLoading ?: boolean
31
31
} & BaseGenericInfoCardProps )
You can’t perform that action at this time.
0 commit comments