1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-03 18:35:09 +01:00

Fix small issues

This commit is contained in:
Brett Sun 2016-01-19 15:15:33 +01:00
parent efbc605fc8
commit 86ff1f88d0
2 changed files with 32 additions and 34 deletions

View File

@ -21,7 +21,7 @@ let ErrorNotFoundPage = React.createClass({
componentDidMount() { componentDidMount() {
// The previous page, if any, is the second item in the locationQueue // The previous page, if any, is the second item in the locationQueue
const { locationQueue: [ _, previousPage ] } = this.history; const { locationQueue: [ , previousPage ] } = this.history;
if (previousPage) { if (previousPage) {
console.logGlobal('Page not found', { console.logGlobal('Page not found', {

View File

@ -57,7 +57,6 @@ let CylandLanding = React.createClass({
setDocumentTitle('CYLAND MediaArtLab'); setDocumentTitle('CYLAND MediaArtLab');
return ( return (
<div className="container">
<div className="ascribe-form-wrapper cyland-landing"> <div className="ascribe-form-wrapper cyland-landing">
<div className="row"> <div className="row">
<div className="col-xs-12"> <div className="col-xs-12">
@ -95,7 +94,6 @@ let CylandLanding = React.createClass({
</div> </div>
</div> </div>
</div> </div>
</div>
); );
} }
}); });