mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -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[]> {
|
getOtherRecommendations(): TPromise<IExtensionRecommendation[]> {
|
||||||
// {{SQL CARBON EDIT}}
|
// {{SQL CARBON EDIT}}
|
||||||
let recommendations = Object.keys(this._exeBasedRecommendations);
|
let recommendations = Object.keys(this._exeBasedRecommendations).concat(this._recommendations);
|
||||||
shuffle(recommendations, this.sessionSeed);
|
shuffle(recommendations, this.sessionSeed);
|
||||||
return TPromise.as(recommendations.map(extensionId => {
|
return TPromise.as(recommendations.map(extensionId => {
|
||||||
const sources: ExtensionRecommendationSource[] = [];
|
const sources: ExtensionRecommendationSource[] = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user