mirror of
https://github.com/ascribe/onion.git
synced 2025-02-14 21:10:27 +01:00
withdraw fix
This commit is contained in:
parent
7e115e26ad
commit
99d6dd278c
@ -224,7 +224,7 @@ let EditionSummary = React.createClass({
|
|||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
status =(
|
status = (
|
||||||
<EditionDetailProperty label="STATUS" value={ statusStr }>
|
<EditionDetailProperty label="STATUS" value={ statusStr }>
|
||||||
{statusAction}
|
{statusAction}
|
||||||
</EditionDetailProperty>);
|
</EditionDetailProperty>);
|
||||||
@ -323,16 +323,7 @@ let EditionDetailHistoryIterator = React.createClass({
|
|||||||
return (
|
return (
|
||||||
<Form>
|
<Form>
|
||||||
{this.props.history.map((historicalEvent, i) => {
|
{this.props.history.map((historicalEvent, i) => {
|
||||||
//return (
|
return (
|
||||||
// <EditionDetailProperty
|
|
||||||
// key={i}
|
|
||||||
// label={historicalEvent[0]}
|
|
||||||
// value={historicalEvent[1]}
|
|
||||||
// labelClassName="col-xs-4 col-sm-4 col-md-4 col-lg-4"
|
|
||||||
// valueClassName="col-xs-8 col-sm-8 col-md-8 col-lg-8"
|
|
||||||
// separator="" />
|
|
||||||
//);
|
|
||||||
return(
|
|
||||||
<Property
|
<Property
|
||||||
name={i}
|
name={i}
|
||||||
key={i}
|
key={i}
|
||||||
@ -340,7 +331,7 @@ let EditionDetailHistoryIterator = React.createClass({
|
|||||||
editable={false}>
|
editable={false}>
|
||||||
<pre className="ascribe-pre">{ historicalEvent[1] }</pre>
|
<pre className="ascribe-pre">{ historicalEvent[1] }</pre>
|
||||||
</Property>
|
</Property>
|
||||||
)
|
);
|
||||||
})}
|
})}
|
||||||
<hr />
|
<hr />
|
||||||
</Form>
|
</Form>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user