diff --git a/packages/plugin-ext/src/hosted/node/scanners/scanner-theia.ts b/packages/plugin-ext/src/hosted/node/scanners/scanner-theia.ts index 5513ff6fa82cd..ac1fa46d27c65 100644 --- a/packages/plugin-ext/src/hosted/node/scanners/scanner-theia.ts +++ b/packages/plugin-ext/src/hosted/node/scanners/scanner-theia.ts @@ -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 {