Bug 1666882 - Remove angle brackets from <Account name> title in account settings which misrepresent it as the email address. r=thomasD

In account settings, the main section of each email account has a title which displays the account's pretty name in angle brackets, so it looks like an email address. Let's reduce the confusion by removing the angle brackets.

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

--HG--
extra : amend_source : 1a150b3599fdb36dfd8f0d58c2febbcd4d0f890f
This commit is contained in:
Lilian Braud 2020-11-13 09:27:27 +02:00
Родитель cf8a4035ff
Коммит 7c3bd6b164
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -14,7 +14,7 @@ function onInit(aPageId, aServerId) {
var titleValue;
if (accountName.value) {
titleValue = defaultTitle + " - <" + accountName.value + ">";
titleValue = defaultTitle + " - " + accountName.value;
} else {
titleValue = defaultTitle;
}