mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-18 14:39:09 +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.leftText = pool.localizedCountry
|
||||
if group.pools.count > 1 {
|
||||
cell.rightText = pool.area?.uppercased()
|
||||
cell.rightText = pool.area
|
||||
cell.accessoryType = .detailDisclosureButton // no checkmark!
|
||||
} else {
|
||||
cell.rightText = pool.secondaryId
|
||||
}
|
||||
cell.rightText = cell.rightText?.uppercased()
|
||||
cell.isTappable = true
|
||||
return cell
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user