diff options
Diffstat (limited to 'app/client')
| -rw-r--r-- | app/client/modules/biggan/views/biggan.live.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/client/modules/biggan/views/biggan.live.js b/app/client/modules/biggan/views/biggan.live.js index ad0fd66..e24d449 100644 --- a/app/client/modules/biggan/views/biggan.live.js +++ b/app/client/modules/biggan/views/biggan.live.js @@ -33,7 +33,7 @@ class BigGANLive extends Component { this.props.actions.queue.stop_task('gpu') } render() { - const { biggan, actions } = this.props + const { biggan, actions, last_message } = this.props // console.log(actions) // if (biggan.loading) { // return <Loading progress={biggan.progress} /> @@ -46,7 +46,7 @@ class BigGANLive extends Component { </div> <div className='params column audioParams'> <div className='spacer'> - {this.props.last_message} + {last_message} </div> <Group title="Player"> @@ -180,6 +180,7 @@ class BigGANLive extends Component { const mapStateToProps = state => ({ fullscreen: state.live.fullscreen, opt: state.live.opt, + last_message: state.live.last_message, runner: state.system.runner, i18n: state.system.i18n.strings, biggan: state.module.biggan, |
