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!
Parcourir la source

WBProcessDashboard now fetches data when parentProcessUuid changes.

pull/1/head
Stanislaw Adaszewski il y a 4 ans
Parent
révision
3d026c072e
1 fichiers modifiés avec 6 ajouts et 3 suppressions
  1. +6
    -3
      frontend/src/js/component/wb-process-dashboard.js

+ 6
- 3
frontend/src/js/component/wb-process-dashboard.js Voir le fichier

@@ -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 (


Chargement…
Annuler
Enregistrer