mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-11 10:38:31 -05:00
Fix Extension Manager marketplace sorting (#2450)
This commit is contained in:
@@ -408,7 +408,7 @@ export class ExtensionTipsService extends Disposable implements IExtensionTipsSe
|
||||
|
||||
getOtherRecommendations(): TPromise<IExtensionRecommendation[]> {
|
||||
// {{SQL CARBON EDIT}}
|
||||
let recommendations = Object.keys(this._exeBasedRecommendations);
|
||||
let recommendations = Object.keys(this._exeBasedRecommendations).concat(this._recommendations);
|
||||
shuffle(recommendations, this.sessionSeed);
|
||||
return TPromise.as(recommendations.map(extensionId => {
|
||||
const sources: ExtensionRecommendationSource[] = [];
|
||||
|
||||
Reference in New Issue
Block a user