mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 17:23:19 -05:00
add api to open new project dialog with only one project type with filtered target platforms (#16315)
This commit is contained in:
@@ -7,7 +7,7 @@ import type * as azdataType from 'azdata';
|
||||
import * as vscode from 'vscode';
|
||||
import { getAzdataApi } from '../common/utils';
|
||||
|
||||
interface Deferred<T> {
|
||||
export interface Deferred<T> {
|
||||
resolve: (result: T | Promise<T>) => void;
|
||||
reject: (reason: any) => void;
|
||||
}
|
||||
@@ -42,7 +42,7 @@ export abstract class DialogBase {
|
||||
await this.initDialogPromise;
|
||||
}
|
||||
|
||||
private onCancelButtonClicked(): void {
|
||||
protected onCancelButtonClicked(): void {
|
||||
this.dispose();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user