1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 00:28:00 +02:00

code review

This commit is contained in:
ddejongh 2015-06-16 10:02:55 +02:00
parent cf3b7f234d
commit 3784d53609
5 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ gulp.task('js:build', function() {
bundle(false); bundle(false);
}); });
gulp.task('serve', ['browser-sync', 'run-server', 'sass:build', 'sass:watch', 'copy'], function() { gulp.task('serve', ['browser-sync', 'run-server', 'lint:watch', 'sass:build', 'sass:watch', 'copy'], function() {
bundle(true); bundle(true);
}); });

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -48,7 +48,7 @@ let DeleteButton = React.createClass({
btnDelete = <Button bsStyle="danger" bsSize="small">REMOVE FROM LIST</Button>; btnDelete = <Button bsStyle="danger" bsSize="small">REMOVE FROM LIST</Button>;
} }
else{ else{
return <div></div>; return null;
} }
return ( return (
<ModalWrapper <ModalWrapper