use new names from order and process properties

This commit is contained in:
GotPPay
2018-08-08 16:48:17 +02:00
parent 0f515172fe
commit 190d139f5a
4 changed files with 7 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ class NextActionsList extends Component {
{
nextActions &&
nextActions.map((nextAction, index) =>
<NextActionItem key={'action-' + nextAction.orderNumber + index} nextAction={nextAction}/>
<NextActionItem key={'action-' + nextAction.order_number + index} nextAction={nextAction}/>
)
}
</WiaasTableBody>