diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 10:36:40 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 10:36:40 +0200 |
| commit | af8b8d4a7bd58d6355665a962e587c149f03cf16 (patch) | |
| tree | 487cfa814eee281089ee97b28d5457063ee3115b /app/client/modules/pix2pix/views | |
| parent | 1efb98c37e58b3a6f73fccc59ec00aeca9bf3ab1 (diff) | |
display status message and stuff
Diffstat (limited to 'app/client/modules/pix2pix/views')
| -rw-r--r-- | app/client/modules/pix2pix/views/pix2pix.live.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/client/modules/pix2pix/views/pix2pix.live.js b/app/client/modules/pix2pix/views/pix2pix.live.js index ae68307..31c2bde 100644 --- a/app/client/modules/pix2pix/views/pix2pix.live.js +++ b/app/client/modules/pix2pix/views/pix2pix.live.js @@ -3,7 +3,7 @@ import { bindActionCreators } from 'redux' import { connect } from 'react-redux' import { - ParamGroup, Player, + ParamGroup, Param, Player, Slider, Select, Button, Loading } from '../../../common/' @@ -137,6 +137,8 @@ class Pix2PixLive extends Component { > Save </Button> + + <p class='last_message'>{this.props.last_message}</p> </ParamGroup> </div> <div className='column'> @@ -297,6 +299,7 @@ function timeInSeconds(n){ return (n / 10).toFixed(1) + ' s.' } const mapStateToProps = state => ({ + last_message: state.live.last_message, opt: state.live.opt, frame: state.live.frame, checkpoints: state.live.checkpoints, |
