diff --git a/client/modules/IDE/components/Toolbar.js b/client/modules/IDE/components/Toolbar.js index 463c2045..4ec26975 100644 --- a/client/modules/IDE/components/Toolbar.js +++ b/client/modules/IDE/components/Toolbar.js @@ -1,4 +1,5 @@ import React, { PropTypes } from 'react'; +import { Link } from 'react-router'; const InlineSVG = require('react-inlinesvg'); const playUrl = require('../../../images/play.svg'); const logoUrl = require('../../../images/p5js-logo.svg'); @@ -81,7 +82,9 @@ class Toolbar extends React.Component { {(() => { // eslint-disable-line if (this.props.owner) { return ( -

by {this.props.owner.username}

+

+ by {this.props.owner.username} +

); } })()}