Skip to content

Commit

Permalink
Improve description in Download and Unpack "quick pick" dialog (#7)
Browse files Browse the repository at this point in the history
We have found new users to the extension being uncertain which item to choose in the "quick pick" dialog displayed when downloading and unpacking the solution.

This pull request contains a a small text change to make it clearer to users what action the No option performs
  • Loading branch information
Chris-WP authored Jul 22, 2021
1 parent c8b549f commit ae41882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tree/PowerAppsDataProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class PowerAppsDataProvider implements vscode.TreeDataProvider<TreeItemWi
let item = await vscode.window.showQuickPick([
{label: `All`, description: `Publish All solution customizations (recommended)`, result: 'all', default: true},
{label: `Solution`, description: `Publish solution customizations`, result: 'solution'},
{label: `No`, description: `Download solution 'as-is'`, result: 'no'}
{label: `No`, description: `Download and unpack solution 'as-is'`, result: 'no'}
]) as any;
if (! item?.result) { return; }
if (item?.result === 'all') {
Expand Down Expand Up @@ -339,4 +339,4 @@ export class PowerAppsDataProvider implements vscode.TreeDataProvider<TreeItemWi
return <PowerAppsAPI>((<any>item).api);
}
}
}
}

0 comments on commit ae41882

Please sign in to comment.