1
0
mirror of https://github.com/ascribe/onion.git synced 2025-02-14 21:10:27 +01:00

withdraw fix

This commit is contained in:
diminator 2015-06-26 01:05:20 +02:00
parent 7e115e26ad
commit 99d6dd278c

View File

@ -323,15 +323,6 @@ let EditionDetailHistoryIterator = React.createClass({
return ( return (
<Form> <Form>
{this.props.history.map((historicalEvent, i) => { {this.props.history.map((historicalEvent, i) => {
//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 ( return (
<Property <Property
name={i} name={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>