chore: Refactor ZenViewSplitter.mjs to use last tab for split view

This commit is contained in:
Mauro Balades
2024-07-02 10:05:35 +02:00
parent 8a41bcf390
commit 5688d0d7ac

View File

@@ -55,7 +55,8 @@ var gZenViewSplitter = {
}
return;
}
this._showSplitView(tab);
let lastTab = dataTab[dataTab.length - 1];
this._showSplitView(lastTab);
},
onLocationChange(browser) {