mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Fix "Open File Location" for CSV Export (#5273)
Fix #5177 - File path wasn't being parsed correctly, URI.file should be used for full file paths.
This commit is contained in:
@@ -14,7 +14,7 @@ export class ShowFileInFolderAction extends Action {
|
|||||||
}
|
}
|
||||||
|
|
||||||
run(): Promise<void> {
|
run(): Promise<void> {
|
||||||
return this.windowsService.showItemInFolder(URI.parse(this.path));
|
return this.windowsService.showItemInFolder(URI.file(this.path));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user