Use consistent case in pool subtitle

This commit is contained in:
Davide De Rosa 2019-10-23 18:53:10 +02:00
parent dfa711b335
commit 5387f7c597

View File

@ -126,11 +126,12 @@ extension ProviderPoolViewController: UITableViewDataSource, UITableViewDelegate
cell.imageView?.image = group.logo cell.imageView?.image = group.logo
cell.leftText = pool.localizedCountry cell.leftText = pool.localizedCountry
if group.pools.count > 1 { if group.pools.count > 1 {
cell.rightText = pool.area?.uppercased() cell.rightText = pool.area
cell.accessoryType = .detailDisclosureButton // no checkmark! cell.accessoryType = .detailDisclosureButton // no checkmark!
} else { } else {
cell.rightText = pool.secondaryId cell.rightText = pool.secondaryId
} }
cell.rightText = cell.rightText?.uppercased()
cell.isTappable = true cell.isTappable = true
return cell return cell
} }