Tunnels list: Make the table view style explicit
This commit is contained in:
parent
b690de0d14
commit
052ece53a3
|
@ -10,6 +10,14 @@ import UIKit
|
|||
|
||||
class TunnelsListTableViewController: UITableViewController {
|
||||
|
||||
init() {
|
||||
super.init(style: .plain)
|
||||
}
|
||||
|
||||
required init?(coder aDecoder: NSCoder) {
|
||||
fatalError("init(coder:) has not been implemented")
|
||||
}
|
||||
|
||||
override func viewDidLoad() {
|
||||
super.viewDidLoad()
|
||||
self.title = "WireGuard"
|
||||
|
|
Loading…
Reference in New Issue