Skip to content

Commit

Permalink
Change panel location of viewsContainers to align to vscode.
Browse files Browse the repository at this point in the history
Signed-off-by: shuyaqian [email protected]
  • Loading branch information
shuyaqian authored and vince-fugnitto committed Sep 30, 2021
1 parent f45b665 commit 6abc784
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class TheiaPluginScanner implements PluginScanner {

for (const location of Object.keys(viewsContainers)) {
const containers = this.readViewsContainers(viewsContainers[location], rawPlugin);
const loc = location === 'activitybar' ? 'left' : location;
const loc = location === 'activitybar' ? 'left' : location === 'panel' ? 'bottom' : location;
if (contributions.viewsContainers[loc]) {
contributions.viewsContainers[loc] = contributions.viewsContainers[loc].concat(containers);
} else {
Expand Down

0 comments on commit 6abc784

Please sign in to comment.