diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-12-26 17:29:35 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-12-26 17:29:35 +0100 |
| commit | 1b5fd3a892aed0a9d97dbc5052dc375d492933d0 (patch) | |
| tree | e976c886a1cb1b3a2c7e90eae24f3965cc630d20 /app/client/modules/biggan/views/biggan.live.js | |
| parent | b79c796b0dfe28d8e06eec004998439fea836760 (diff) | |
category list
Diffstat (limited to 'app/client/modules/biggan/views/biggan.live.js')
| -rw-r--r-- | app/client/modules/biggan/views/biggan.live.js | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app/client/modules/biggan/views/biggan.live.js b/app/client/modules/biggan/views/biggan.live.js index 20cffe8..af1edea 100644 --- a/app/client/modules/biggan/views/biggan.live.js +++ b/app/client/modules/biggan/views/biggan.live.js @@ -13,6 +13,7 @@ import * as liveActions from '../../../live/live.actions' import * as queueActions from '../../../queue/queue.actions' import * as bigganTasks from '../biggan.tasks' import * as bigganActions from '../biggan.actions' +import BigGANCategoryList from './biggan.categoryList.js' class BigGANLive extends Component { constructor(props) { @@ -20,7 +21,7 @@ class BigGANLive extends Component { props.actions.live.get_params() } start(){ - console.log(this.props.opt) + // console.log(this.props.opt) console.log('starting up!') this.props.actions.tasks.live_task({ // folder_id: this.props.biggan.data.resultsFolder.id, @@ -31,7 +32,7 @@ class BigGANLive extends Component { } render() { const { biggan, actions } = this.props - console.log(actions) + // console.log(actions) // if (biggan.loading) { // return <Loading progress={biggan.progress} /> // } @@ -98,8 +99,8 @@ class BigGANLive extends Component { >{"Spin"}</Button> <Slider live name='orbit_noise_speed' - title={"Noise Speed"} - min={0} max={1} type='float' + title={"Shuffle Speed"} + min={0} max={4} type='float' /> </Group> @@ -116,6 +117,9 @@ class BigGANLive extends Component { /> </Group> </div> + <div className='params column'> + <BigGANCategoryList /> + </div> </div> </div> ) |
