mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-18 22:49:10 +00:00
Use consistent case in pool subtitle
This commit is contained in:
parent
dfa711b335
commit
5387f7c597
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user