Use remote file dialog for database and server properties dialogs (#24390) (#24412)

* Use remote file dialog for database and server properties dialogs (#24390)

* Bump STS version
This commit is contained in:
Cory Rivera
2023-09-13 16:18:28 -07:00
committed by GitHub
parent f2411f2756
commit 7b62d52554
31 changed files with 108 additions and 97 deletions

View File

@@ -632,8 +632,8 @@ export class ExtHostDataProtocol extends ExtHostDataProtocolShape {
/**
* Open a file browser
*/
public override $openFileBrowser(handle: number, ownerUri: string, expandPath: string, fileFilters: string[], changeFilter: boolean): Thenable<boolean> {
return this._resolveProvider<azdata.FileBrowserProvider>(handle).openFileBrowser(ownerUri, expandPath, fileFilters, changeFilter);
public override $openFileBrowser(handle: number, ownerUri: string, expandPath: string, fileFilters: string[], changeFilter: boolean, showFoldersOnly?: boolean): Thenable<boolean> {
return this._resolveProvider<azdata.FileBrowserProvider>(handle).openFileBrowser(ownerUri, expandPath, fileFilters, changeFilter, showFoldersOnly);
}
/**