modify 'extra' placement (#106)
This commit is contained in:
parent
d6f8c48b70
commit
8b0e2b8042
|
@ -239,10 +239,6 @@ class Detail extends Component<RouteComponentProps & WrappedComponentProps> {
|
||||||
<span className="label"><FormattedMessage id="event.table.expression" />:</span>
|
<span className="label"><FormattedMessage id="event.table.expression" />:</span>
|
||||||
{data.info}
|
{data.info}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
|
||||||
<span className="label">Extra:</span>
|
|
||||||
{detail.extra}
|
|
||||||
</div>
|
|
||||||
{
|
{
|
||||||
_.map(points, (item) => {
|
_.map(points, (item) => {
|
||||||
return (
|
return (
|
||||||
|
@ -268,6 +264,9 @@ class Detail extends Component<RouteComponentProps & WrappedComponentProps> {
|
||||||
}, {
|
}, {
|
||||||
title: <FormattedMessage id="event.table.scene.value" />,
|
title: <FormattedMessage id="event.table.scene.value" />,
|
||||||
dataIndex: 'value',
|
dataIndex: 'value',
|
||||||
|
}, {
|
||||||
|
title: 'Extra',
|
||||||
|
dataIndex: 'extra',
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
pagination={false}
|
pagination={false}
|
||||||
|
|
Loading…
Reference in New Issue