mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
Add DW master.dacpac (#15559)
* add DW master.dacpac * add missing awaits in tests * use ternary * only show master in system db dropdown for dw
This commit is contained in:
@@ -315,8 +315,8 @@ export class AddDatabaseReferenceDialog {
|
||||
this.setDefaultDatabaseValues();
|
||||
});
|
||||
|
||||
// only master is a valid system db reference for projects targetting Azure
|
||||
if (this.project.getProjectTargetVersion().toLowerCase().includes('azure')) {
|
||||
// only master is a valid system db reference for projects targetting Azure and DW
|
||||
if (this.project.getProjectTargetVersion().toLowerCase().includes('azure') || this.project.getProjectTargetVersion().toLowerCase().includes('dw')) {
|
||||
this.systemDatabaseDropdown.values?.splice(1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user