Skip to content

Commit 5672cd3

Browse files
committed
Fix case of always allow commands action
1 parent cbfcac6 commit 5672cd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ export class RunInTerminalTool extends Disposable implements IToolImpl {
887887
subCommandTooltip = localize('autoApprove.baseCommandSingleTooltip', 'Always allow command starting with `{0}` to run without confirmation', subCommandsFirstWordOnly[0]);
888888
} else {
889889
const commandSeparated = subCommandsFirstWordOnly.join(', ');
890-
subCommandLabel = localize('autoApprove.baseCommand', 'Always allow commands: {0}', commandSeparated);
890+
subCommandLabel = localize('autoApprove.baseCommand', 'Always Allow Commands: {0}', commandSeparated);
891891
subCommandTooltip = localize('autoApprove.baseCommandTooltip', 'Always allow commands starting with `{0}` to run without confirmation', commandSeparated);
892892
}
893893
actions.push({

0 commit comments

Comments
 (0)