mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix action id for OpenFileInFolderAction (#9005)
* Fix action id for OpenFileInFolderAction * Undo unrelated change
This commit is contained in:
@@ -23,7 +23,7 @@ export class ShowFileInFolderAction extends Action {
|
|||||||
export class OpenFileInFolderAction extends Action {
|
export class OpenFileInFolderAction extends Action {
|
||||||
|
|
||||||
constructor(private path: string, label: string, @IOpenerService private openerService: IOpenerService) {
|
constructor(private path: string, label: string, @IOpenerService private openerService: IOpenerService) {
|
||||||
super('showItemInFolder.action.id', label);
|
super('openItemInFolder.action.id', label);
|
||||||
}
|
}
|
||||||
|
|
||||||
run() {
|
run() {
|
||||||
|
|||||||
Reference in New Issue
Block a user