@worktile/theia 14.2.8 → 14.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/plugin-menu/plugin-menu.component.d.ts +1 -1
- package/esm2020/components/plugin-menu/plugin-menu.component.mjs +4 -2
- package/fesm2015/worktile-theia.mjs +3 -1
- package/fesm2015/worktile-theia.mjs.map +1 -1
- package/fesm2020/worktile-theia.mjs +3 -1
- package/fesm2020/worktile-theia.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -10275,7 +10275,9 @@ class ThePluginMenuComponent extends mixinUnsubscribe(MixinBase) {
|
|
|
10275
10275
|
updateKeywords(keywords) {
|
|
10276
10276
|
this.keyWords = keywords.toLowerCase().trim();
|
|
10277
10277
|
this.buildMenus();
|
|
10278
|
-
this.scrollContainer
|
|
10278
|
+
if (this.scrollContainer) {
|
|
10279
|
+
this.scrollContainer.scrollTop = 0;
|
|
10280
|
+
}
|
|
10279
10281
|
}
|
|
10280
10282
|
theListboxChange(event) {
|
|
10281
10283
|
if (event.type === 'select') {
|