diff --git a/README.md b/README.md index 6ba6844..d7f73b0 100644 --- a/README.md +++ b/README.md @@ -180,13 +180,13 @@ And for Azure DevOps👇 [Check out our docs for more details](https://github.com/pnp/vscode-viva/wiki/5.5-Actions#upgrade-project) -- **Validate current project** - Creates a validation .md report against the currently used SPFx version in the project. The action will automatically detect the SPFx version used and will validate if the project is properly set up. +- **Validate project** - Creates a validation .md report against the currently used SPFx version in the project. The action will automatically detect the SPFx version used and will validate if the project is properly set up. ![Upgrade project](./assets/images/validate-project.png) [Check out our docs for more details](https://github.com/pnp/vscode-viva/wiki/5.5-Actions#validate-current-project) -- **Rename current project** - Forget about manual work and let the extension rename your project and generate a new solution ID. +- **Rename project** - Forget about manual work and let the extension rename your project and generate a new solution ID. ![Rename](./assets/images/rename.png) diff --git a/assets/walkthrough/tasks-and-actions.md b/assets/walkthrough/tasks-and-actions.md index e142fd3..1273240 100644 --- a/assets/walkthrough/tasks-and-actions.md +++ b/assets/walkthrough/tasks-and-actions.md @@ -34,13 +34,13 @@ And for Azure DevOps👇 [Check out our docs for more details](https://github.com/pnp/vscode-viva/wiki/5.5-Actions#upgrade-project) -- **Validate current project** - Creates a validation .md report against the currently used SPFx version in the project. The action will automatically detect the SPFx version used and will validate if the project is properly set up. +- **Validate project** - Creates a validation .md report against the currently used SPFx version in the project. The action will automatically detect the SPFx version used and will validate if the project is properly set up. ![Upgrade project](../images/validate-project.png) [Check out our docs for more details](https://github.com/pnp/vscode-viva/wiki/5.5-Actions#validate-current-project) -- **Rename current project** - Forget about manual work and let the extension rename your project and generate a new solution ID. +- **Rename project** - Forget about manual work and let the extension rename your project and generate a new solution ID. ![Rename](../images/rename.png) diff --git a/src/panels/CommandPanel.ts b/src/panels/CommandPanel.ts index 7691aae..483d762 100644 --- a/src/panels/CommandPanel.ts +++ b/src/panels/CommandPanel.ts @@ -200,8 +200,8 @@ export class CommandPanel { private static async actionsTreeView() { const actionCommands: ActionTreeItem[] = [ new ActionTreeItem('Upgrade project', '', { name: 'arrow-up', custom: false }, undefined, Commands.upgradeProject), - new ActionTreeItem('Validate current project', '', { name: 'check-all', custom: false }, undefined, Commands.validateProject), - new ActionTreeItem('Rename current project', '', { name: 'whole-word', custom: false }, undefined, Commands.renameProject), + new ActionTreeItem('Validate project', '', { name: 'check-all', custom: false }, undefined, Commands.validateProject), + new ActionTreeItem('Rename project', '', { name: 'whole-word', custom: false }, undefined, Commands.renameProject), new ActionTreeItem('Grant API permissions', '', { name: 'workspace-trusted', custom: false }, undefined, Commands.grantAPIPermissions), new ActionTreeItem('Deploy project (sppkg)', '', { name: 'cloud-upload', custom: false }, undefined, Commands.deployProject), new ActionTreeItem('Add new component', '', { name: 'add', custom: false }, undefined, Commands.addToProject),