Skip to content

Commit aa3e5e9

Browse files
authored
Merge pull request #6198 from woocommerce/issue/6193-refund-via-row-should-not-be-selectable
[Refunds] Prevent selection of `Refund Via` row
2 parents b32ad7e + b802046 commit aa3e5e9

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- [*] Orders: In the experimental Order Creation feature, product variations added to a new order now show a list of their attributes. [https://github.com/woocommerce/woocommerce-ios/pull/6131]
77
- [*] Enlarged the tap area for the action button on the notice view. [https://github.com/woocommerce/woocommerce-ios/pull/6146]
88
- [*] Reviews: Fixed crash on iPad when tapping the More button. [https://github.com/woocommerce/woocommerce-ios/pull/6187]
9+
- [*] Disabled unneccesary selection of the "Refund via" row on the Refund Confirmation screen [https://github.com/woocommerce/woocommerce-ios/pull/6198]
910

1011
8.5
1112
-----

WooCommerce/Classes/ViewRelated/Orders/Order Details/Issue Refunds/RefundConfirmationViewController.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ extension RefundConfirmationViewController: UITableViewDataSource {
172172
let cell = tableView.dequeueReusableCell(WooBasicTableViewCell.self, for: indexPath)
173173
cell.applyPlainTextStyle()
174174
cell.bodyLabel.text = row.text
175+
cell.selectionStyle = .none
175176
return cell
176177
default:
177178
assertionFailure("Unsupported row.")

0 commit comments

Comments
 (0)