File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ export const URLS = {
85
85
COMPARE_CLUSTERS : '/compare-clusters' ,
86
86
APP_CONFIG : 'edit' ,
87
87
GLOBAL_CONFIG : '/global-config' ,
88
- CONFIG_DRIFT : 'config-drift' ,
89
88
GLOBAL_CONFIG_TEMPLATES_DEVTRON_APP ,
90
89
GLOBAL_CONFIG_TEMPLATES_DEVTRON_APP_CREATE : `${ GLOBAL_CONFIG_TEMPLATES_DEVTRON_APP } /create` ,
91
90
// NOTE: using appId since we are re-using AppConfig component
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ const AppStatusContent = ({
89
89
< span className = "dc__word-break" > { nodeDetails . name } </ span >
90
90
91
91
< div
92
- className = { `app-summary__status-name f-${ getNodeStatus ( nodeDetails ) ?. toLowerCase ( ) || '' } dc__first-letter-capitalize--imp` }
92
+ className = { `app-summary__status-name f-${ getNodeStatus ( nodeDetails ) ?. toLowerCase ( ) || '' } dc__first-letter-capitalize--imp fs-13 fw-4 lh-20 ` }
93
93
>
94
94
{ getNodeStatus ( nodeDetails ) }
95
95
</ div >
Original file line number Diff line number Diff line change @@ -183,7 +183,9 @@ export const DeploymentStatusDetailRow = ({
183
183
< span className = "ml-12 mr-12 fs-13" >
184
184
< span data-testid = "deployment-status-step-name" > { statusBreakDownType . displayText } </ span >
185
185
{ statusBreakDownType . displaySubText && (
186
- < span className = { `ml-12 f-${ statusBreakDownType . icon || 'waiting' } ` } >
186
+ < span
187
+ className = { `ml-12 app-summary__status-name f-${ statusBreakDownType . icon || 'waiting' } ` }
188
+ >
187
189
{ statusBreakDownType . displaySubText }
188
190
</ span >
189
191
) }
Original file line number Diff line number Diff line change @@ -247,9 +247,9 @@ export interface AppDetails {
247
247
FluxAppStatusDetail ?: FluxAppStatusDetail
248
248
}
249
249
250
- export interface ConfigDriftModalProps extends Pick < AppDetails , 'appId' > {
250
+ export interface ConfigDriftModalProps extends Required < Pick < AppDetails , 'appId' > > {
251
+ envId : number
251
252
handleCloseModal ?: ( ) => void
252
- envId ?: number
253
253
}
254
254
255
255
export enum RegistryType {
You can’t perform that action at this time.
0 commit comments