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
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
23.5
-----
- [internal] POS code was moved to its own module, including POS specific color and image assets. [https://github.com/woocommerce/woocommerce-ios/pull/16176]
- [*] Fix Create Coupon screen scrolling issue. [https://github.com/woocommerce/woocommerce-ios/pull/16218]


23.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ struct AddEditCoupon: View {
}
}
}
.scrollDismissesKeyboard(.immediately)
}
.sheet(isPresented: $showingSelectProducts) {
ProductSelectorNavigationView(configuration: .productsForCoupons,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ struct CouponRestrictions: View {
.padding(.horizontal, insets: geometry.safeAreaInsets)
.frame(maxWidth: .infinity, alignment: .leading)
}
.scrollDismissesKeyboard(.immediately)
.background(Color(.listForeground(modal: false)))
.ignoresSafeArea(.container, edges: [.horizontal])
.sheet(isPresented: $showingExcludeProducts) {
Expand Down