yet another validation edge case in the identity screen

This commit is contained in:
Michael Hudson-Doyle 2018-04-19 10:28:15 +12:00
parent 503e5a4e8c
commit 9a5175a3fa
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ class IdentityView(BaseView):
if val is not None:
self.form_rows.body.focus += 2
self.form.ssh_import_id_value = val
if iu.value != "":
if iu.value != "" or val is None:
iu.validate()
def done(self, result):