Removed unncessary log statement & tabindex attribute

This commit is contained in:
Jeffrey Morgan 2015-06-11 15:07:30 -07:00
parent 99f1519e74
commit a12a90b765
2 changed files with 1 additions and 2 deletions

View File

@ -63,7 +63,6 @@ var ContainerHomeFolder = React.createClass({
return false;
}
console.log(this.props.container.Volumes);
var folders = _.map(_.omit(this.props.container.Volumes, (v, k) => k.indexOf('/Users/') !== -1), (val, key) => {
var firstFolder = key.split('/')[1];
return (

View File

@ -161,7 +161,7 @@ var Containers = React.createClass({
<section className={sidebarHeaderClass}>
<h4>Containers</h4>
<div className="create">
<Router.Link tabIndex="-1" to="new">
<Router.Link to="new">
<span className="btn-new icon icon-add-3"></span>
</Router.Link>
</div>