IJPL-233678 fix 'update all' button is missing when after searching in marketplace tab, the installed tab is selected

GitOrigin-RevId: 9239d7ff162977336b545d17c2a76a0502c2bc7d
This commit is contained in:
Vadim Salavatov
2026-02-13 13:37:15 +00:00
committed by intellij-monorepo-bot
parent b4bc3754d1
commit ce8b8d56f8
@@ -389,6 +389,11 @@ class InstalledPluginsTab extends PluginsTab {
}
}
else if (myBundledUpdateGroup.ui == null) {
if (myBundledUpdateGroup.secondaryActions.isEmpty()) {
// removeGroup clears actions too
myBundledUpdateGroup.addSecondaryAction(myUpdateAllBundled);
myBundledUpdateGroup.addSecondaryAction(myUpdateCounterBundled);
}
for (PluginUiModel descriptor : updates) {
for (UIPluginGroup group : getInstalledPanel().getGroups()) {
ListPluginComponent component = group.findComponent(descriptor.getPluginId());