From 53c003b17a0a23d406b6d0d478f937e7240dc689 Mon Sep 17 00:00:00 2001 From: Danny Moesch Date: Wed, 3 Jul 2019 22:43:32 +0200 Subject: [PATCH] Update UI after successful SSH key import --- pass/Controllers/GitServerSettingTableViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/pass/Controllers/GitServerSettingTableViewController.swift b/pass/Controllers/GitServerSettingTableViewController.swift index a390982..fb069ac 100644 --- a/pass/Controllers/GitServerSettingTableViewController.swift +++ b/pass/Controllers/GitServerSettingTableViewController.swift @@ -245,6 +245,7 @@ class GitServerSettingTableViewController: UITableViewController { SharedDefaults[.gitSSHKeySource] = "file" SVProgressHUD.showSuccess(withStatus: "Imported".localize()) SVProgressHUD.dismiss(withDelay: 1) + self.sshLabel?.isEnabled = true } catch { Utils.alert(title: "Error".localize(), message: error.localizedDescription, controller: self, completion: nil) }