mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-31 02:26:50 +10:00
Fix booking states in inbox
This commit is contained in:
parent
86fe4e0fd1
commit
f401482891
1 changed files with 5 additions and 1 deletions
|
|
@ -73,7 +73,11 @@ const txState = (intl, tx, isOrder) => {
|
|||
id: 'InboxPage.stateCanceled',
|
||||
}),
|
||||
};
|
||||
} else if (propTypes.txIsDelivered(tx)) {
|
||||
} else if (
|
||||
propTypes.txIsDelivered(tx) ||
|
||||
propTypes.txHasFirstReview(tx) ||
|
||||
propTypes.txIsReviewed(tx)
|
||||
) {
|
||||
return {
|
||||
nameClassName: css.nameDelivered,
|
||||
bookingClassName: css.bookingDelivered,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue