Skip to content

Commit 44d2701

Browse files
committed
fix: row colors
1 parent f1c9d47 commit 44d2701

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

WooCommerce/Classes/ViewRelated/Inbox/Inbox.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ struct Inbox: View {
2424
} else {
2525
InboxNoteRow(viewModel: rowViewModel)
2626
}
27-
}
27+
}.background(Color(.listForeground))
2828
}
2929
case .empty:
3030
// TODO: 5954 - update empty state

WooCommerce/Classes/ViewRelated/Orders/Order Creation/ProductsSection/AddProductToOrder.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ struct AddProductToOrder: View {
2424
Divider().frame(height: Constants.dividerHeight)
2525
}
2626
}
27+
.background(Color(.listForeground))
2728
case .empty:
2829
EmptyState(title: Localization.emptyStateMessage, image: .emptyProductsTabImage)
2930
.frame(maxHeight: .infinity)

WooCommerce/Classes/ViewRelated/Orders/Order Creation/ProductsSection/AddProductVariationToOrder.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ struct AddProductVariationToOrder: View {
2727
}
2828
Divider().frame(height: Constants.dividerHeight)
2929
}
30+
.background(Color(.listForeground))
3031
}
3132
case .empty:
3233
EmptyState(title: Localization.emptyStateMessage, image: .emptyProductsTabImage)

0 commit comments

Comments
 (0)