Skip to content

Commit b802046

Browse files
committed
6193 Prevent selection of Refund Via row
There is no other use of the `RefundConfirmationViewModel.SimpleTextRow` at present, so it’s safe to prevent selection in every case.
1 parent 0a44507 commit b802046

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
@@ -5,6 +5,7 @@
55
- [*] 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]
66
- [*] Enlarged the tap area for the action button on the notice view. [https://github.com/woocommerce/woocommerce-ios/pull/6146]
77
- [*] Reviews: Fixed crash on iPad when tapping the More button. [https://github.com/woocommerce/woocommerce-ios/pull/6187]
8+
- [*] Disabled unneccesary selection of the "Refund via" row on the Refund Confirmation screen [https://github.com/woocommerce/woocommerce-ios/pull/6198]
89

910
8.5
1011
-----

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)