Skip to content

Commit b0fff47

Browse files
jonah-idenvince-fugnitto
authored andcommitted
renamed beginIndex to startIndex
1 parent 909aa52 commit b0fff47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/plugin-ext/src/main/browser/tabs/tabs-main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,9 @@ export class TabsMainImpl implements TabsMain, Disposable {
292292
return;
293293
}
294294

295-
updateTabIndices(tabInfo: TabInfo, beginIndex: number): void {
295+
updateTabIndices(tabInfo: TabInfo, startIndex: number): void {
296296
for (const tab of this.tabInfoLookup.values()) {
297-
if (tab.group === tabInfo.group && tab.tabIndex >= beginIndex) {
297+
if (tab.group === tabInfo.group && tab.tabIndex >= startIndex) {
298298
tab.tabIndex = tab.group.tabs.indexOf(tab.tab);
299299
}
300300
}

0 commit comments

Comments
 (0)