File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -591,7 +591,7 @@ const Details: React.FC<DetailsType> = ({
591
591
}
592
592
}
593
593
594
- const hideAppDetailsStatus = ( ) : void => {
594
+ const handleCloseAppStatusModal = ( ) : void => {
595
595
if ( detailedStatus ) {
596
596
toggleDetailedStatus ( false )
597
597
}
@@ -790,7 +790,7 @@ const Details: React.FC<DetailsType> = ({
790
790
{ ( detailedStatus || location . search . includes ( DEPLOYMENT_STATUS_QUERY_PARAM ) ) && (
791
791
< AppStatusModal
792
792
titleSegments = { [ appDetailsFromIndexStore . appName , appDetailsFromIndexStore . environmentName ] }
793
- handleClose = { hideAppDetailsStatus }
793
+ handleClose = { handleCloseAppStatusModal }
794
794
type = "devtron-app"
795
795
appDetails = { appDetailsFromIndexStore }
796
796
isConfigDriftEnabled = { isConfigDriftEnabled }
@@ -799,7 +799,7 @@ const Details: React.FC<DetailsType> = ({
799
799
detailedStatus ? AppStatusModalTabType . APP_STATUS : AppStatusModalTabType . DEPLOYMENT_STATUS
800
800
}
801
801
deploymentStatusDetailsBreakdownData = { deploymentStatusDetailsBreakdownData }
802
- isLoading = { isInitialTimelineDataLoading }
802
+ isDeploymentTimelineLoading = { isInitialTimelineDataLoading }
803
803
/>
804
804
) }
805
805
{ location . search . includes ( 'deployment-window-status' ) && DeploymentWindowStatusModal && (
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ const AppDetailsComponent = ({
247
247
configDriftModal = { null }
248
248
// TODO: Test virtual environment deployment data
249
249
deploymentStatusDetailsBreakdownData = { deploymentStatusDetailsBreakdownData }
250
- isLoading = { isInitialTimelineDataLoading }
250
+ isDeploymentTimelineLoading = { isInitialTimelineDataLoading }
251
251
initialTab = { AppStatusModalTabType . DEPLOYMENT_STATUS }
252
252
/>
253
253
) }
You can’t perform that action at this time.
0 commit comments