diff --git a/common/app/routes/map/components/Block.jsx b/common/app/routes/map/components/Block.jsx index d9bb3f0481..165e7c90b5 100644 --- a/common/app/routes/map/components/Block.jsx +++ b/common/app/routes/map/components/Block.jsx @@ -1,4 +1,5 @@ import React, { PropTypes } from 'react'; +import { Link } from 'react-router'; import FA from 'react-fontawesome'; import PureComponent from 'react-pure-render/component'; import { Panel } from 'react-bootstrap'; @@ -26,7 +27,7 @@ export default class Block extends PureComponent { 'challenge-title': true, 'ion-checkmark-circled': !isLocked, 'ion-locked': isLocked, - 'disabled': isLocked + disabled: isLocked }); if (isLocked) { return ( @@ -46,7 +47,7 @@ export default class Block extends PureComponent {
); });