From 938a73692db0a9c87754c097d57d14549b52247b Mon Sep 17 00:00:00 2001 From: Stanislaw Adaszewski Date: Thu, 20 Feb 2020 18:50:59 +0100 Subject: [PATCH] Removed filtering by container state. --- frontend/src/js/component/wb-process-listing.js | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/frontend/src/js/component/wb-process-listing.js b/frontend/src/js/component/wb-process-listing.js index 02daf13..7d68cac 100644 --- a/frontend/src/js/component/wb-process-listing.js +++ b/frontend/src/js/component/wb-process-listing.js @@ -15,9 +15,9 @@ class WBProcessListing extends Component { this.state.rows = []; this.state.numPages = 0; this.state.requestStates = [ 'Uncommitted', 'Committed', 'Final' ]; - this.state.containerStates = [ 'Queued', 'Locked', 'Running', 'Cancelled', 'Complete' ]; + // this.state.containerStates = [ 'Queued', 'Locked', 'Running', 'Cancelled', 'Complete' ]; this.state.reqStateMask = [ true, true, true ]; - this.state.contStateMask = [ true, true, true, true, true ]; + // this.state.contStateMask = [ true, true, true, true, true ]; } componentDidMount() { @@ -43,12 +43,12 @@ class WBProcessListing extends Component {
{ item['uuid'] }
), (
- { item['state'] } / + { item['state'] } { item.container_uuid ? container ? - container.state : - "Container Not Found" : - { String(item.container_uuid) } } + [ " / ", container.state ] : + [ " / ", Container Not Found ] : + null } { !(error || warning) && container && container.state === 'Complete' ? " / Success" : null } { error ? [" / ", E ] : null } @@ -148,9 +148,6 @@ class WBProcessListing extends Component { this.fetchItems() } /> - this.fetchItems() } />