summaryrefslogtreecommitdiff
path: root/app/client
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-11 15:16:31 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-11 15:16:31 +0100
commit94a2ac2ce2318fc44bed9ffaacfe73d08d6c0d76 (patch)
treee74a479637d3e3c06e9ee3d5f7e2e536a7898d7b /app/client
parent9ca4e4822bc3947f9c570d5ec3490f06f3de6997 (diff)
deploy bundle
Diffstat (limited to 'app/client')
-rw-r--r--app/client/modules/biggan/views/biggan.live.js5
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,