diff --git a/Riot/Modules/UserVerification/SessionStatus/UserVerificationSessionStatusViewController.swift b/Riot/Modules/UserVerification/SessionStatus/UserVerificationSessionStatusViewController.swift index 8d32b3868..748421b2e 100644 --- a/Riot/Modules/UserVerification/SessionStatus/UserVerificationSessionStatusViewController.swift +++ b/Riot/Modules/UserVerification/SessionStatus/UserVerificationSessionStatusViewController.swift @@ -71,6 +71,7 @@ final class UserVerificationSessionStatusViewController: UIViewController { // Do any additional setup after loading the view. self.setupViews() + self.vc_removeBackTitle() self.activityPresenter = ActivityIndicatorPresenter() self.errorPresenter = MXKErrorAlertPresentation() diff --git a/Riot/Modules/UserVerification/SessionsStatus/UserVerificationSessionsStatusViewController.storyboard b/Riot/Modules/UserVerification/SessionsStatus/UserVerificationSessionsStatusViewController.storyboard index 2d5c915f0..24f2aed27 100644 --- a/Riot/Modules/UserVerification/SessionsStatus/UserVerificationSessionsStatusViewController.storyboard +++ b/Riot/Modules/UserVerification/SessionsStatus/UserVerificationSessionsStatusViewController.storyboard @@ -68,8 +68,14 @@ + - + @@ -81,10 +87,13 @@ + + - + + @@ -93,13 +102,14 @@ + - + diff --git a/Riot/Modules/UserVerification/SessionsStatus/UserVerificationSessionsStatusViewController.swift b/Riot/Modules/UserVerification/SessionsStatus/UserVerificationSessionsStatusViewController.swift index f99a7e107..21c298dce 100644 --- a/Riot/Modules/UserVerification/SessionsStatus/UserVerificationSessionsStatusViewController.swift +++ b/Riot/Modules/UserVerification/SessionsStatus/UserVerificationSessionsStatusViewController.swift @@ -34,6 +34,7 @@ final class UserVerificationSessionsStatusViewController: UIViewController { @IBOutlet private weak var titleLabel: UILabel! @IBOutlet private weak var closeButton: UIButton! @IBOutlet private weak var informationLabel: UILabel! + @IBOutlet private weak var sessionsTableViewTitle: UILabel! @IBOutlet private weak var tableView: UITableView! // MARK: Private @@ -62,6 +63,7 @@ final class UserVerificationSessionsStatusViewController: UIViewController { // Do any additional setup after loading the view. self.setupViews() + self.vc_removeBackTitle() self.activityIndicatorPresenter = ActivityIndicatorPresenter() self.errorPresenter = MXKErrorAlertPresentation() @@ -105,6 +107,7 @@ final class UserVerificationSessionsStatusViewController: UIViewController { self.closeButton.vc_setBackgroundColor(theme.headerTextSecondaryColor, for: .normal) self.titleLabel.textColor = theme.textPrimaryColor self.informationLabel.textColor = theme.textPrimaryColor + self.sessionsTableViewTitle.textColor = theme.textPrimaryColor } private func registerThemeServiceDidChangeThemeNotification() { @@ -120,6 +123,7 @@ final class UserVerificationSessionsStatusViewController: UIViewController { self.setupTableView() self.updateTitleViews() + self.sessionsTableViewTitle.text = "Sessions" self.informationLabel.text = "Messages with this user in this room are end-to-end encrypted and can’t be read by third parties." }