@@ -378,7 +378,7 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
378
378
try {
379
379
setChangeSync ( true ) ;
380
380
const updatedApp = JSON . parse ( JSON . stringify ( props . app ) ) as models . Application ;
381
- if ( ! updatedApp . spec . syncPolicy ) {
381
+ if ( ! updatedApp . spec . syncPolicy ) {
382
382
updatedApp . spec . syncPolicy = { } ;
383
383
}
384
384
//preserve the current enabled state when modifying prune or self heal
@@ -556,7 +556,8 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
556
556
await updateApp ( updatedApp , { validate : false } ) ;
557
557
}
558
558
} }
559
- checked = { app . spec . syncPolicy ?. automated ? ( app . spec . syncPolicy . automated . enabled !== false ) : false } id = 'enable-auto-sync'
559
+ checked = { app . spec . syncPolicy ?. automated ? app . spec . syncPolicy . automated . enabled !== false : false }
560
+ id = 'enable-auto-sync'
560
561
/>
561
562
< label htmlFor = 'enable-auto-sync' > ENABLE AUTO-SYNC</ label >
562
563
< HelpIcon title = 'If checked, application will automatically sync when changes are detected' />
@@ -575,7 +576,8 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
575
576
'Disable Prune Resources?' ,
576
577
'Are you sure you want to disable resource pruning during automated application synchronization?' ,
577
578
false ,
578
- app . spec . syncPolicy . automated . selfHeal
579
+ app . spec . syncPolicy . automated . selfHeal ,
580
+ app . spec . syncPolicy . automated . enabled
579
581
)
580
582
} >
581
583
Disable
@@ -589,7 +591,8 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
589
591
'Enable Prune Resources?' ,
590
592
'Are you sure you want to enable resource pruning during automated application synchronization?' ,
591
593
true ,
592
- app . spec . syncPolicy . automated . selfHeal
594
+ app . spec . syncPolicy . automated . selfHeal ,
595
+ app . spec . syncPolicy . automated . enabled
593
596
)
594
597
} >
595
598
Enable
@@ -609,7 +612,8 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
609
612
'Disable Self Heal?' ,
610
613
'Are you sure you want to disable automated self healing?' ,
611
614
app . spec . syncPolicy . automated . prune ,
612
- false
615
+ false ,
616
+ app . spec . syncPolicy . automated . enabled
613
617
)
614
618
} >
615
619
Disable
@@ -623,7 +627,8 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
623
627
'Enable Self Heal?' ,
624
628
'Are you sure you want to enable automated self healing?' ,
625
629
app . spec . syncPolicy . automated . prune ,
626
- true
630
+ true ,
631
+ app . spec . syncPolicy . automated . enabled
627
632
)
628
633
} >
629
634
Enable
0 commit comments