summaryrefslogtreecommitdiff
path: root/app/client/modules/pix2pix/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-06 22:45:25 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-06 22:45:25 +0200
commit26b80e09cd64d5bb5b40bc7872aff397d9cc80ea (patch)
treeb98217f3e7694f7e896a9bca21bc0506676f794d /app/client/modules/pix2pix/index.js
parent954c81596701e4948a7e9cc3133f601b067ba31c (diff)
play frames
Diffstat (limited to 'app/client/modules/pix2pix/index.js')
-rw-r--r--app/client/modules/pix2pix/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/client/modules/pix2pix/index.js b/app/client/modules/pix2pix/index.js
index 076fef9..f3a4050 100644
--- a/app/client/modules/pix2pix/index.js
+++ b/app/client/modules/pix2pix/index.js
@@ -12,8 +12,8 @@ function router () {
return (
<section>
<Route exact path='/pix2pix/new/' component={Pix2PixNew} />
- <Route exact path='/pix2pix/datasets/' component={Pix2PixShow} />
- <Route exact path='/pix2pix/datasets/:id/' component={Pix2PixShow} />
+ <Route exact path='/pix2pix/sequences/' component={Pix2PixShow} />
+ <Route exact path='/pix2pix/sequences/:id/' component={Pix2PixShow} />
<Route exact path='/pix2pix/live/' component={Pix2PixLive} />
</section>
)
@@ -22,7 +22,7 @@ function router () {
function links(){
return (
<span>
- <span><Link to="/pix2pix/datasets/">datasets</Link></span>
+ <span><Link to="/pix2pix/sequences/">sequences</Link></span>
<span>train</span>
<span>process</span>
<span><Link to="/pix2pix/live/">live</Link></span>