commit | 4594cba0c53461bc1a273458e0a7a314da6bfb68 | [log] [tgz] |
---|---|---|
author | andre.schmid <andre.schmid@est.tech> | Tue Jan 25 19:38:32 2022 +0000 |
committer | Michael Morris <michael.morris@est.tech> | Mon Jan 31 15:23:21 2022 +0000 |
tree | c78010c789d726aa72ee8591ab12720b72d1c675 | |
parent | 99b7fb519806870b3c84e9e1ac0ac2f59320a6b0 [diff] [blame] |
Obtain and control VSP package upload status Obtain the upload status and control the upload from the frontend perspective. Change-Id: Idcc921cf592efea33df35c557afcfae827af3a39 Issue-ID: SDC-3862 Signed-off-by: andre.schmid <andre.schmid@est.tech>
diff --git a/openecomp-ui/src/nfvo-components/loader/LoaderReducer.js b/openecomp-ui/src/nfvo-components/loader/LoaderReducer.js index 3f9eb17..4222c3d 100644 --- a/openecomp-ui/src/nfvo-components/loader/LoaderReducer.js +++ b/openecomp-ui/src/nfvo-components/loader/LoaderReducer.js
@@ -32,7 +32,9 @@ isLoading: true }; case actionTypes.RECEIVE_RESPONSE: - fetchingRequests--; + if (fetchingRequests > 0) { + fetchingRequests--; + } newArray = state.currentlyFetching.filter(item => { return item !== action.url;