Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
case .pointOfSaleAsATabi2:
return buildConfig == .localDeveloper || buildConfig == .alpha
case .pointOfSaleOrdersi1:
return buildConfig == .localDeveloper || buildConfig == .alpha
return true
case .pointOfSaleOrdersi2:
return buildConfig == .localDeveloper || buildConfig == .alpha
case .pointOfSaleBarcodeScanningi2:
Expand Down
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
-----
- [*] Shipping Labels: Improve UI of Split shipments screen. [https://github.com/woocommerce/woocommerce-ios/pull/15838]
- [*] POS: icon button with confirmation step used for clearing the cart [https://github.com/woocommerce/woocommerce-ios/pull/15829]
- [*] POS: Orders from Point of Sale now show a badge in order list and order details [https://github.com/woocommerce/woocommerce-ios/pull/15887]
- [*] Shipping Labels: Fixed a portion of layout issues caused by bigger accessibility content size categories. [https://github.com/woocommerce/woocommerce-ios/pull/15844]
- [*] 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]
- [*] POS: start a new cart by scanning a barcode on the payment success screen [https://github.com/woocommerce/woocommerce-ios/pull/15870]
Expand Down
4 changes: 2 additions & 2 deletions WooCommerce/Classes/Extensions/UILabel+SalesChannel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ private extension UILabel {
enum Layout {
static let borderWidth = CGFloat(0.0)
static let cornerRadius = CGFloat(4.0)
static let salesChannelLabelTextColor = UIColor(color: .wooCommercePurple(.shade80))
static let salesChannelLabelBackgroundColor = UIColor(color: .wooCommercePurple(.shade10))
static let salesChannelLabelTextColor = UIColor.withColorStudio(.wooCommercePurple, shade: .shade80)
static let salesChannelLabelBackgroundColor = UIColor.withColorStudio(.wooCommercePurple, shade: .shade10)
}
}