mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 01:25:36 -05:00
remove client side sorting for db list (#21899)
* remove client side sorting for db list * update sts
This commit is contained in:
@@ -1111,12 +1111,7 @@ export class ConnectionManagementService extends Disposable implements IConnecti
|
||||
}
|
||||
|
||||
return this._providers.get(providerId).onReady.then(provider => {
|
||||
return provider.listDatabases(uri).then(result => {
|
||||
if (result && result.databaseNames) {
|
||||
result.databaseNames.sort();
|
||||
}
|
||||
return result;
|
||||
});
|
||||
return provider.listDatabases(uri);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user