File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ interface Props {
54
54
actionToResume : 'download' | 'export' | 'manifest' ;
55
55
selectedResources : any [ ] ;
56
56
} ;
57
+ systemPopupActivated : boolean ;
57
58
onActionResumed : ( ) => any
58
59
}
59
60
@@ -572,7 +573,7 @@ const DiscoveryActionBar = (props: Props) => {
572
573
</ Popover >
573
574
< Modal
574
575
closable = { false }
575
- open = { downloadStatus . message . active }
576
+ open = { downloadStatus . message . active && ! props . systemPopupActivated }
576
577
title = { downloadStatus . message . title }
577
578
footer = { (
578
579
< Button
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ export const ReduxDiscoveryActionBar = (() => {
6
6
const mapStateToProps = ( state ) => ( {
7
7
user : state . user ,
8
8
discovery : state . discovery ,
9
+ systemPopupActivated : ! ! state . popups ?. systemUseWarnPopup ,
9
10
} ) ;
10
11
11
12
const mapDispatchToProps = ( dispatch ) => ( {
You can’t perform that action at this time.
0 commit comments