CSR-1910 fix background color of subtotal row.

This commit is contained in:
Bryan Mauger 2024-01-09 15:35:22 -05:00
parent d5c4891df9
commit 295ef1a387
2 changed files with 3 additions and 1 deletions

View file

@ -834,7 +834,7 @@ export default {
display: flex;
justify-content: space-between;
padding: 0.5rem 1.5rem;
&:nth-last-child(-n + 3) {
&:nth-last-child(-n + 4) {
background-color: $green-100;
}
&:last-child {

View file

@ -145,6 +145,8 @@ export default {
computed: {
ShowCart() {
if (this.isPia && store.getters.submittedOrder.settledTenderAmount == 0) {
// settleTenderAmount always shows 0 via localhost or dev.
// Temporarily set return true to see cart in localhost or dev environment
return false;
}