Skip to content

Commit

Permalink
Update command expressions for switch to sf (#174)
Browse files Browse the repository at this point in the history
to fix commands not showing the command palette.
  • Loading branch information
smithgp committed Apr 21, 2024
1 parent 8e63460 commit e1cae1c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions extensions/analyticsdx-vscode-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,49 +135,49 @@
},
{
"command": "analyticsdx.app.create",
"when": "sfdx:project_opened"
"when": "sf:project_opened"
},
{
"command": "analyticsdx.app.delete",
"when": "sfdx:project_opened"
"when": "sf:project_opened"
},
{
"command": "analyticsdx.dashboard.lwc.create",
"when": "sfdx:project_opened"
"when": "sf:project_opened"
},
{
"command": "analyticsdx.studio.open",
"when": "sfdx:project_opened"
"when": "sf:project_opened"
},
{
"command": "analyticsdx.studio.open.app",
"when": "!isWeb && sfdx:project_opened"
"when": "sf:project_opened"
},
{
"command": "analyticsdx.studio.open.dataManager",
"when": "!isWeb && sfdx:project_opened"
"when": "sf:project_opened"
},
{
"command": "analyticsdx.template.create",
"when": "sfdx:project_opened"
"when": "sf:project_opened"
},
{
"command": "analyticsdx.template.delete",
"when": "sfdx:project_opened"
"when": "sf:project_opened"
},
{
"command": "analyticsdx.template.update",
"when": "sfdx:project_opened"
"when": "sf:project_opened"
},
{
"command": "analyticsdx.template.updateFromApp",
"when": "sfdx:project_opened"
"when": "sf:project_opened"
}
],
"explorer/context": [
{
"command": "analyticsdx.dashboard.lwc.create",
"when": "explorerResourceIsFolder && resourceFilename == lwc && sfdx:project_opened"
"when": "explorerResourceIsFolder && resourceFilename == lwc && sf:project_opened"
}
]
},
Expand Down

0 comments on commit e1cae1c

Please sign in to comment.