diff --git a/js/ui/components/keyring.js b/js/ui/components/keyring.js index b38888f5a..ae67b5510 100644 --- a/js/ui/components/keyring.js +++ b/js/ui/components/keyring.js @@ -143,8 +143,15 @@ const KeyringDialog = new Lang.Class({ }, _updateSensitivity: function(sensitive) { - this._passwordEntry.reactive = sensitive; - this._passwordEntry.clutter_text.editable = sensitive; + if (this._passwordEntry) { + this._passwordEntry.reactive = sensitive; + this._passwordEntry.clutter_text.editable = sensitive; + } + + if (this._confirmEntry) { + this._confirmEntry.reactive = sensitive; + this._confirmEntry.clutter_text.editable = sensitive; + } this._continueButton.can_focus = sensitive; this._continueButton.reactive = sensitive;