diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-09-24 01:52:58 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-09-24 01:52:58 +0200 |
| commit | 2a5fcdecf400b08f782db1fbe3ef4a759d0f08f0 (patch) | |
| tree | 2c22e137c8baedea8a4809dd1ea4873787859344 /app/client/modules/pix2pixhd/views/sequence.editor.js | |
| parent | 8004a449f0c3090614158039734816a5b780ec18 (diff) | |
taskz
Diffstat (limited to 'app/client/modules/pix2pixhd/views/sequence.editor.js')
| -rw-r--r-- | app/client/modules/pix2pixhd/views/sequence.editor.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/client/modules/pix2pixhd/views/sequence.editor.js b/app/client/modules/pix2pixhd/views/sequence.editor.js index 135dfb3..7c3dc3b 100644 --- a/app/client/modules/pix2pixhd/views/sequence.editor.js +++ b/app/client/modules/pix2pixhd/views/sequence.editor.js @@ -60,7 +60,7 @@ class SequenceEditor extends Component { } render() { - const { app, pix2pixhd, remote, checkpoint, folder_id, generated } = this.props + const { app, pix2pixhd, remote, checkpoint, folder_id, processed } = this.props const { cursor, selection, title } = this.state const path = "sequences/" + checkpoint.name console.log(checkpoint, pix2pixhd) @@ -82,14 +82,14 @@ class SequenceEditor extends Component { /> <Button title='Create a new dataset?' - onClick={() => remote.create_dataset_task({ title, sequence: checkpoint.name, selection, folder_id })} + onClick={() => remote.splice_task({ title, sequence: checkpoint.name, selection, folder_id })} > Create </Button> </Group> <Group title='Salt dataset'> - {generated - ? 'Salting is only available on generated datasets.' + {processed + ? 'Salting is only available on processed datasets.' : 'Salting coming soon!'} </Group> </div> |
