diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-01-05 08:54:09 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-01-05 08:54:09 +0100 |
| commit | 8f40b9021f7c4cc108d9585dcb9ab8cc8d462fc6 (patch) | |
| tree | 0b75d5267ee6d5db286c78f254acd68433fe6616 /client/components/Paintings.jsx | |
| parent | 29299f04793ac99ce76f66af32bfa239c32568fe (diff) | |
rebuild
Diffstat (limited to 'client/components/Paintings.jsx')
| -rw-r--r-- | client/components/Paintings.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/Paintings.jsx b/client/components/Paintings.jsx index 79dbe76..dc0f257 100644 --- a/client/components/Paintings.jsx +++ b/client/components/Paintings.jsx @@ -12,7 +12,7 @@ export default class Paintings extends Component { return ( <div class='cell' key={i} style={painting.style}> <div class='painting'> - <Link to={'/painting/' + painting.id}> + <Link to={'/paintings/' + painting.id}> <div class='image' style={'background-image: url(' + painting.image.uri + ')'} /> </Link> </div> @@ -23,7 +23,7 @@ export default class Paintings extends Component { <div>{painting.date}</div> <div>{painting.image.caption}</div> <br/> - <Link to={'/painting/' + painting.id}> + <Link to={'/paintings/' + painting.id}> More info > </Link> </div> |
