Skip to content

Commit 469db5a

Browse files
committed
Fix aria label command
1 parent 268925f commit 469db5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/contrib/terminal/browser/terminalInstance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1367,7 +1367,7 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
13671367

13681368
private _onEnvironmentVariableInfoChanged(info: IEnvironmentVariableInfo): void {
13691369
if (info.requiresAction) {
1370-
this._xterm?.textarea?.setAttribute('aria-label', nls.localize('terminalStaleTextBoxAriaLabel', "Terminal {0} environment is stale, run the 'Show Environment Variable Information' command for more information", this._id));
1370+
this._xterm?.textarea?.setAttribute('aria-label', nls.localize('terminalStaleTextBoxAriaLabel', "Terminal {0} environment is stale, run the 'Show Environment Information' command for more information", this._id));
13711371
}
13721372
this._refreshEnvironmentVariableInfoWidgetState(info);
13731373
}

0 commit comments

Comments
 (0)