change statuses to adapt to woocommerce statuses
This commit is contained in:
@@ -30,10 +30,10 @@ export const dashboardTexts = {
|
|||||||
},
|
},
|
||||||
statuses: {
|
statuses: {
|
||||||
open: 'Open',
|
open: 'Open',
|
||||||
'in-progress': 'In Progress',
|
processing: 'In Progress',
|
||||||
production: 'Production',
|
completed: 'Production',
|
||||||
'end-of-life': 'End Of Life',
|
'end-of-life': 'End Of Life',
|
||||||
canceled: 'Canceled',
|
cancelled: 'Cancelled',
|
||||||
'not-accepted': 'Not Accepted',
|
'not-accepted': 'Not Accepted',
|
||||||
invalid: 'Invalid',
|
invalid: 'Invalid',
|
||||||
pending: 'Pending'
|
pending: 'Pending'
|
||||||
|
|||||||
@@ -36,8 +36,8 @@
|
|||||||
background: $not-accepted-status-color;
|
background: $not-accepted-status-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.in-progress {
|
.processing {
|
||||||
background: $in-progress-status-color;
|
background: $processing-status-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.next-action-details{
|
.next-action-details{
|
||||||
|
|||||||
@@ -31,15 +31,15 @@
|
|||||||
background: $open-status-color;
|
background: $open-status-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.in-progress {
|
.processing {
|
||||||
background: $in-progress-status-color;
|
background: $processing-status-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.line-open {
|
.line-open {
|
||||||
border-left: 3px $open-status-color solid;
|
border-left: 3px $open-status-color solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
.line-in-progress {
|
.line-processing {
|
||||||
border-left: 3px $in-progress-status-color solid;
|
border-left: 3px $processing-status-color solid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user