From 190d139f5aa6b9e634967c701f197a551b4a24f6 Mon Sep 17 00:00:00 2001 From: GotPPay Date: Wed, 8 Aug 2018 16:48:17 +0200 Subject: [PATCH] use new names from order and process properties --- .../src/containers/dashboard/components/NextActionItem.jsx | 4 ++-- .../src/containers/dashboard/components/NextActionsList.jsx | 2 +- frontend/src/containers/dashboard/components/OrderItem.jsx | 6 +++--- frontend/src/containers/dashboard/components/OrdersList.jsx | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/containers/dashboard/components/NextActionItem.jsx b/frontend/src/containers/dashboard/components/NextActionItem.jsx index f307a46..3d0a455 100644 --- a/frontend/src/containers/dashboard/components/NextActionItem.jsx +++ b/frontend/src/containers/dashboard/components/NextActionItem.jsx @@ -10,10 +10,10 @@ class NextActionItem extends Component { return ( - {nextAction.stepAction} + {nextAction.step_action} - +
{dashboardTexts.statuses[nextAction.status]}
diff --git a/frontend/src/containers/dashboard/components/NextActionsList.jsx b/frontend/src/containers/dashboard/components/NextActionsList.jsx index e5ed86b..7995a9a 100644 --- a/frontend/src/containers/dashboard/components/NextActionsList.jsx +++ b/frontend/src/containers/dashboard/components/NextActionsList.jsx @@ -14,7 +14,7 @@ class NextActionsList extends Component { { nextActions && nextActions.map((nextAction, index) => - + ) } diff --git a/frontend/src/containers/dashboard/components/OrderItem.jsx b/frontend/src/containers/dashboard/components/OrderItem.jsx index 072df85..5eed5f9 100644 --- a/frontend/src/containers/dashboard/components/OrderItem.jsx +++ b/frontend/src/containers/dashboard/components/OrderItem.jsx @@ -12,9 +12,9 @@ class OrderItem extends Component {