Commit 347ff4fe authored by Ray Schamp's avatar Ray Schamp

Fix GH-37: Construct project urls correctly

parent d4578979
......@@ -33,6 +33,9 @@ module.exports = React.createClass({
case 'gallery':
href = '/studio/' + item.id + '/';
break;
case 'project':
href = '/projects/' + item.id + '/';
break;
default:
href = '/' + item.type + '/' + item.id + '/';
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment