Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/extensibility/ExtensionManagerDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,14 @@ define(function (require, exports, module) {
});
});

// Show the first tab
$dlg.find(".nav-tabs a:first").tab("show");
// Open dialog to Installed tab if extension updates are available
if ($("#toolbar-extension-manager").hasClass('updatesAvailable')) {
$dlg.find(".nav-tabs a.installed").tab("show");
}
// Otherwise show the first tab
else {
$dlg.find(".nav-tabs a:first").tab("show");
}
});

// Handle the install button.
Expand Down