diff --git a/frontend/src/js/component/wb-process-listing.js b/frontend/src/js/component/wb-process-listing.js index fb95c94..f1e3033 100644 --- a/frontend/src/js/component/wb-process-listing.js +++ b/frontend/src/js/component/wb-process-listing.js @@ -54,7 +54,10 @@ class WBProcessListing extends Component { const { arvHost, arvToken } = this.props.appState; const { requestStates, reqStateMask } = this.state; const { activePage, itemsPerPage, ownerUuid, - requestingContainerUuid } = this.props; + requestingContainerUuid, waitForNextProps } = this.props; + + if (waitForNextProps) + return; const filters = [ [ 'requesting_container_uuid', '=', requestingContainerUuid ] diff --git a/frontend/src/js/page/wb-process-view.js b/frontend/src/js/page/wb-process-view.js index 8a1a1b2..7c635b8 100644 --- a/frontend/src/js/page/wb-process-view.js +++ b/frontend/src/js/page/wb-process-view.js @@ -99,7 +99,7 @@ class WBProcessView extends Component { componentWillReceiveProps(nextProps) { this.props = nextProps; - // this.setState({ 'objectUrls': [], 'request': null, 'container': null }); + this.setState({ 'objectUrls': [], 'request': null, 'container': null }); this.fetchData(); } @@ -120,15 +120,14 @@ class WBProcessView extends Component {

Container Request Fields

- { container ? ([ -

Children

, - this.getUrl({ page }) } /> - ]) : null } +

Children

+ this.getUrl({ page }) } />
Click here