Fixed some bugs.

This commit is contained in:
Mario Basic
2015-06-14 13:03:55 +02:00
parent 350110742e
commit 2a1801c560
4 changed files with 4 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ class Navbar extends React.Component {
var signedInAs = () => {
if (this.props.loggedIn === true) {
return (
<p class="navbar-text">Signed in as <b>{this.props.user.full_name}</b></p>
<p className="navbar-text">Signed in as <b>{this.props.user.full_name}</b></p>
);
}
};