Skip to content

Commit 07919b7

Browse files
authored
[POS Orders] Enable pointOfSaleOrdersi1 (#15887)
2 parents ee5934c + 521dba4 commit 07919b7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Modules/Sources/Experiments/DefaultFeatureFlagService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
9898
case .pointOfSaleAsATabi2:
9999
return buildConfig == .localDeveloper || buildConfig == .alpha
100100
case .pointOfSaleOrdersi1:
101-
return buildConfig == .localDeveloper || buildConfig == .alpha
101+
return true
102102
case .pointOfSaleOrdersi2:
103103
return buildConfig == .localDeveloper || buildConfig == .alpha
104104
case .pointOfSaleBarcodeScanningi2:

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
-----
66
- [*] Shipping Labels: Improve UI of Split shipments screen. [https://github.com/woocommerce/woocommerce-ios/pull/15838]
77
- [*] POS: icon button with confirmation step used for clearing the cart [https://github.com/woocommerce/woocommerce-ios/pull/15829]
8+
- [*] POS: Orders from Point of Sale now show a badge in order list and order details [https://github.com/woocommerce/woocommerce-ios/pull/15887]
89
- [*] Shipping Labels: Fixed a portion of layout issues caused by bigger accessibility content size categories. [https://github.com/woocommerce/woocommerce-ios/pull/15844]
910
- [*] Shipping Labels: Enable the confirm button on the payment method sheet even when there are no changes. [https://github.com/woocommerce/woocommerce-ios/pull/15856]
1011
- [*] POS: start a new cart by scanning a barcode on the payment success screen [https://github.com/woocommerce/woocommerce-ios/pull/15870]

WooCommerce/Classes/Extensions/UILabel+SalesChannel.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ private extension UILabel {
2323
enum Layout {
2424
static let borderWidth = CGFloat(0.0)
2525
static let cornerRadius = CGFloat(4.0)
26-
static let salesChannelLabelTextColor = UIColor(color: .wooCommercePurple(.shade80))
27-
static let salesChannelLabelBackgroundColor = UIColor(color: .wooCommercePurple(.shade10))
26+
static let salesChannelLabelTextColor = UIColor.withColorStudio(.wooCommercePurple, shade: .shade80)
27+
static let salesChannelLabelBackgroundColor = UIColor.withColorStudio(.wooCommercePurple, shade: .shade10)
2828
}
2929
}

0 commit comments

Comments
 (0)