Skip to content
Snippets Groups Projects
Commit ecb7de1d authored by Chris Hines's avatar Chris Hines
Browse files

fix an undefined var

parent 1132a09f
No related branches found
No related tags found
4 merge requests!106if stat fails, display the error instead of immediately refreshing...,!99Dev,!49Dev,!46Dev
......@@ -101,7 +101,7 @@ export class KeygenComponent implements OnInit, OnDestroy {
}
logout(sshauthzserver) {
if (!(sshauthzserver.logout === null)) {
if (sshauthzserver !== undefined && sshauthzserver.logout !== null) {
window.open(sshauthzserver.logout);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment