diff options
Diffstat (limited to 'public/bundle.js')
| -rw-r--r-- | public/bundle.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/bundle.js b/public/bundle.js index 3c6d78d..5731e45 100644 --- a/public/bundle.js +++ b/public/bundle.js @@ -11082,7 +11082,7 @@ var Pix2PixHDTrain = function (_Component) { title: 'Augment dataset', value: 'Augment', onClick: function onClick() { - return remote.augment_task(_this2.state.checkpoint_name, _this2.state); + return _this2.props.remote.augment_task(_this2.state.checkpoint_name, _this2.state); } }) ), @@ -11093,7 +11093,7 @@ var Pix2PixHDTrain = function (_Component) { title: 'Train one epoch', value: 'Train', onClick: function onClick() { - return remote.train_task(_this2.state.checkpoint_name, pix2pixhd.folder_id, 1); + return _this2.props.remote.train_task(_this2.state.checkpoint_name, pix2pixhd.folder_id, 1); } }) ), @@ -11104,7 +11104,7 @@ var Pix2PixHDTrain = function (_Component) { title: 'Delete recursive frames', value: 'Clear', onClick: function onClick() { - return remote.clear_recursive_task(_this2.state.checkpoint_name); + return _this2.props.remote.clear_recursive_task(_this2.state.checkpoint_name); } }) ) |
