We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 909aa52 commit b0fff47Copy full SHA for b0fff47
packages/plugin-ext/src/main/browser/tabs/tabs-main.ts
@@ -292,9 +292,9 @@ export class TabsMainImpl implements TabsMain, Disposable {
292
return;
293
}
294
295
- updateTabIndices(tabInfo: TabInfo, beginIndex: number): void {
+ updateTabIndices(tabInfo: TabInfo, startIndex: number): void {
296
for (const tab of this.tabInfoLookup.values()) {
297
- if (tab.group === tabInfo.group && tab.tabIndex >= beginIndex) {
+ if (tab.group === tabInfo.group && tab.tabIndex >= startIndex) {
298
tab.tabIndex = tab.group.tabs.indexOf(tab.tab);
299
300
0 commit comments