From e055ca78a53e0f0b8f4b3a351717a8987d6706eb Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Tue, 26 Jun 2018 01:55:55 +0200 Subject: params should pass thru.. --- app/client/modules/morph/views/morph.app.js | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'app/client/modules/morph/views') diff --git a/app/client/modules/morph/views/morph.app.js b/app/client/modules/morph/views/morph.app.js index 045f396..38cd121 100644 --- a/app/client/modules/morph/views/morph.app.js +++ b/app/client/modules/morph/views/morph.app.js @@ -28,7 +28,7 @@ class MorphResults extends Component { steps: 16, dilate: 2, smooth: true, - cmd: 'mix', + mode: 'mix', } if (!props.morph.data) props.actions.load_data() } @@ -38,7 +38,7 @@ class MorphResults extends Component { render(){ if (! this.props.morph.app) return - const { sequences, renders, files } = this.props.morph.app + const { resultsFolder, sequences, renders, files } = this.props.morph.app const sequence_options = sequences.map(sequence => [ sequence.name.split("_").slice(0, 3).join(" ") + "~ (" + sequence.count + ")", sequence.name @@ -92,10 +92,10 @@ class MorphResults extends Component {