diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-09-02 22:09:34 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-09-02 22:09:34 +0200 |
| commit | 56619248e5032b644ec7a8e215bd59aecad86c73 (patch) | |
| tree | 34be53b86f603ba808e57e273ad81a6a20bf4190 /app/client | |
| parent | f48c40ce0c6924ac46b2bdc3164308e5a6cf3136 (diff) | |
move sequence loader
Diffstat (limited to 'app/client')
| -rw-r--r-- | app/client/modules/pix2pixhd/index.js | 4 | ||||
| -rw-r--r-- | app/client/modules/pix2pixhd/views/pix2pixhd.show.js | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/app/client/modules/pix2pixhd/index.js b/app/client/modules/pix2pixhd/index.js index ea224f3..b33ce00 100644 --- a/app/client/modules/pix2pixhd/index.js +++ b/app/client/modules/pix2pixhd/index.js @@ -8,6 +8,7 @@ import util from '../../util' import Pix2PixHDNew from './views/pix2pixhd.new' import Pix2PixHDShow from './views/pix2pixhd.show' import Pix2PixHDResults from './views/pix2pixhd.results' +import Pix2PixHDTrain from './views/pix2pixhd.train' import Pix2PixHDLive from './views/pix2pixhd.live' class router { @@ -34,8 +35,9 @@ class router { function links(){ return [ - { url: '/pix2pixhd/new/', name: 'new' }, + { url: '/pix2pixhd/new/', name: 'folders' }, { url: '/pix2pixhd/sequences/', name: 'sequences' }, + { url: '/pix2pixhd/train/', name: 'checkpoints' }, { url: '/pix2pixhd/results/', name: 'results' }, { url: '/pix2pixhd/live/', name: 'live' }, ] diff --git a/app/client/modules/pix2pixhd/views/pix2pixhd.show.js b/app/client/modules/pix2pixhd/views/pix2pixhd.show.js index d58ee80..3266d59 100644 --- a/app/client/modules/pix2pixhd/views/pix2pixhd.show.js +++ b/app/client/modules/pix2pixhd/views/pix2pixhd.show.js @@ -62,7 +62,6 @@ class Pix2PixHDShow extends Component { </div> </div> - <DatasetComponent loading={pix2pixhd.loading} progress={pix2pixhd.progress} |
