Bug 1865806 - Prevent blank 3pane when starting up with unsent messages in outbox. r=freaktechnik

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Magnus Melin 2023-11-21 18:48:14 +00:00
Родитель 4094294e98
Коммит 14c94b8ef5
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -4322,7 +4322,7 @@ var threadPane = {
cardColumns: getDefaultColumnsForCardsView(gFolder),
async init() {
quickFilterBar.init();
await quickFilterBar.init();
this.setUpTagStyles();
Services.prefs.addObserver("mailnews.tags.", this);

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

@ -56,7 +56,8 @@ var quickFilterBar = {
*/
activeElement: null,
init() {
async init() {
await window.customElements.whenDefined("search-bar");
this._bindUI();
this.updateRovingTab();