diff --git a/js/ui/components/networkAgent.js b/js/ui/components/networkAgent.js index ee376326b..6779b3147 100644 --- a/js/ui/components/networkAgent.js +++ b/js/ui/components/networkAgent.js @@ -725,6 +725,10 @@ var NetworkAgent = class { title = _("Mobile broadband network password"); body = _("A password is required to connect to ā€œ%sā€.").format(connectionSetting.get_id()); break; + case 'vpn': + title = _("VPN password"); + body = _("A password is required to connect to ā€œ%sā€.").format(connectionSetting.get_id()); + break; default: log(`Invalid connection type: ${connectionType}`); this._native.respond(requestId, Shell.NetworkAgentResponse.INTERNAL_ERROR);