IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

WBProcessDashboard now fetches data when parentProcessUuid changes.

pull/1/head
parent
commit
3d026c072e
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      frontend/src/js/component/wb-process-dashboard.js

+ 6
- 3
frontend/src/js/component/wb-process-dashboard.js View File

@@ -119,10 +119,13 @@ class WBProcessDashboard extends Component {
this.fetchData();
}
/* componentWillReceiveProps(nextProps) {
componentWillReceiveProps(nextProps) {
if (nextProps.parentProcessUuid === this.props.parentProcessUuid)
return;
this.props = nextProps;
fetchData();
} */
this.fetchData();
}
render({}, { rows }) {
return (


Loading…
Cancel
Save