Bug 1845218 - Pass -1 as maxTabsLength so all tabs are displayed. r=fxview-reviewers,kcochrane

Differential Revision: https://phabricator.services.mozilla.com/D184952
This commit is contained in:
Mike Kaply 2023-07-31 19:38:52 +00:00
Родитель e8e43661cf
Коммит e911d9a8a7
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -269,7 +269,7 @@ class OpenTabsInViewCard extends MozLitElement {
.maxTabsLength=${ifDefined(
this.classList.contains("height-limited") && !this.showMore
? OpenTabsInViewCard.MAX_TABS_FOR_COMPACT_HEIGHT
: null
: -1
)}
.tabItems=${ifDefined(getTabListItems(this.tabs))}
></fxview-tab-list>