Skip to content

Commit 576ecbf

Browse files
committed
Fix dark mode button color
1 parent 213da87 commit 576ecbf

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

WooCommerce/Classes/ViewRelated/ReusableViews/LabelAndButtonTableViewCell.swift

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,15 @@ final class LabelAndButtonTableViewCell: UITableViewCell {
66

77
// TODO: Private outlets, configure method
88
// TODO: Button completion
9+
10+
override func awakeFromNib() {
11+
super.awakeFromNib()
12+
configureButton()
13+
}
14+
}
15+
16+
private extension LabelAndButtonTableViewCell {
17+
func configureButton() {
18+
button.tintColor = .accent
19+
}
920
}

0 commit comments

Comments
 (0)