mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Databases order in schema compare dialog to be same as OE (#6162)
* Database order to be same as OE * changes to reset for source target buttons
This commit is contained in:
@@ -638,7 +638,7 @@ export class SchemaCompareDialog {
|
||||
|
||||
let idx = -1;
|
||||
let count = -1;
|
||||
let values = (await azdata.connection.listDatabases(connectionId)).map(db => {
|
||||
let values = (await azdata.connection.listDatabases(connectionId)).sort((a, b) => a.localeCompare(b)).map(db => {
|
||||
count++;
|
||||
|
||||
// put currently selected db at the top of the dropdown if there is one
|
||||
|
||||
Reference in New Issue
Block a user