Bug 1002534- Password change disambiguation dialog can show <> as a username r=MattN

Differential Revision: https://phabricator.services.mozilla.com/D18749

--HG--
extra : moz-landing-system : lando
This commit is contained in:
ui.manish 2019-02-05 22:28:11 +00:00
Родитель 6e6a41683e
Коммит b68eaf60be
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1209,7 +1209,7 @@ LoginManagerPrompter.prototype = {
promptToChangePasswordWithUsernames(logins, count, aNewLogin) {
this.log("promptToChangePasswordWithUsernames with count:", count);
var usernames = logins.map(l => l.username);
var usernames = logins.map(l => l.username || this._getLocalizedString("noUsername"));
var dialogText = this._getLocalizedString("userSelectText2");
var dialogTitle = this._getLocalizedString("passwordChangeTitle");
var selectedIndex = { value: null };