summaryrefslogtreecommitdiff
path: root/app/client/modules/pix2pix/index.js
diff options
context:
space:
mode:
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>