mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
Small code style fixes
This commit is contained in:
parent
441cf68fae
commit
cf6d653c68
@ -25,12 +25,16 @@ let WalletPieceContainer = React.createClass({
|
||||
currentUser: React.PropTypes.object.isRequired,
|
||||
loadPiece: React.PropTypes.func.isRequired,
|
||||
handleDeleteSuccess: React.PropTypes.func.isRequired,
|
||||
submitButtonType: React.PropTypes.func.isRequired
|
||||
submitButtonType: React.PropTypes.func.isRequired,
|
||||
children: React.PropTypes.oneOfType([
|
||||
React.PropTypes.object,
|
||||
React.PropTypes.array
|
||||
])
|
||||
},
|
||||
|
||||
|
||||
render() {
|
||||
if(this.props.piece && this.props.piece.id) {
|
||||
if (this.props.piece && this.props.piece.id) {
|
||||
return (
|
||||
<Piece
|
||||
piece={this.props.piece}
|
||||
@ -76,12 +80,10 @@ let WalletPieceContainer = React.createClass({
|
||||
url={ApiUrls.note_private_piece}
|
||||
currentUser={this.props.currentUser}/>
|
||||
</CollapsibleParagraph>
|
||||
|
||||
{this.props.children}
|
||||
</Piece>
|
||||
);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
return (
|
||||
<div className="fullpage-spinner">
|
||||
<AscribeSpinner color='dark-blue' size='lg' />
|
||||
|
@ -61,8 +61,7 @@ let IkonotvArtistDetailsForm = React.createClass({
|
||||
let buttons, spinner, heading;
|
||||
let { isInline, handleSuccess } = this.props;
|
||||
|
||||
|
||||
if(!isInline) {
|
||||
if (!isInline) {
|
||||
buttons = (
|
||||
<button
|
||||
type="submit"
|
||||
@ -89,7 +88,7 @@ let IkonotvArtistDetailsForm = React.createClass({
|
||||
);
|
||||
}
|
||||
|
||||
if(this.props.piece && this.props.piece.id && this.props.piece.extra_data) {
|
||||
if (this.props.piece && this.props.piece.id && this.props.piece.extra_data) {
|
||||
return (
|
||||
<Form
|
||||
disabled={this.props.disabled}
|
||||
|
@ -61,7 +61,7 @@ let IkonotvArtworkDetailsForm = React.createClass({
|
||||
let buttons, spinner, heading;
|
||||
let { isInline, handleSuccess } = this.props;
|
||||
|
||||
if(!isInline) {
|
||||
if (!isInline) {
|
||||
buttons = (
|
||||
<button
|
||||
type="submit"
|
||||
@ -88,7 +88,7 @@ let IkonotvArtworkDetailsForm = React.createClass({
|
||||
);
|
||||
}
|
||||
|
||||
if(this.props.piece && this.props.piece.id && this.props.piece.extra_data) {
|
||||
if (this.props.piece && this.props.piece.id && this.props.piece.extra_data) {
|
||||
return (
|
||||
<Form
|
||||
disabled={this.props.disabled}
|
||||
|
Loading…
Reference in New Issue
Block a user