Skip to content

Commit 86a9239

Browse files
authored
Merge pull request #7724 from woocommerce/fix/7723-product-draft-status-color
Products: fix the draft status blue text color in the product row
2 parents 78ddbc9 + 7029357 commit 86a9239

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- [*] In-Person Payments: Fixed a bug where cancelling a card reader connection would temporarily prevent further connections [https://github.com/woocommerce/woocommerce-ios/pull/7689]
77
- [*] In-Person Payments: Improvements to the card reader connection flow UI [https://github.com/woocommerce/woocommerce-ios/pull/7687]
88
- [*] Login: Users can now set up the Jetpack connection between a self-hosted site and their WP.com account. [https://github.com/woocommerce/woocommerce-ios/pull/7608]
9+
- [*] Product list: the "Draft" blue color is fixed to be more readable for a draft product row in the product list. [https://github.com/woocommerce/woocommerce-ios/pull/7724]
910

1011
10.3
1112
-----

WooCommerce/Classes/ViewRelated/Products/View Models/ProductsTabProductViewModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ private extension ProductStatus {
55
var descriptionColor: UIColor {
66
switch self {
77
case .draft:
8-
return .blue
8+
return .wooBlue
99
case .pending:
1010
return .orange
1111
default:

0 commit comments

Comments
 (0)