We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e79934b commit 2663aefCopy full SHA for 2663aef
src/vs/workbench/contrib/positronConsole/browser/components/actionBar.tsx
@@ -348,6 +348,21 @@ export const ActionBar = (props: ActionBarProps) => {
348
}
349
</ActionBarRegion>
350
351
+ {multiSessionsEnabled &&
352
+ <div>
353
+ {directoryLabel &&
354
+ <div aria-label={(() => localize(
355
+ 'directoryLabel',
356
+ "Current Working Directory"
357
+ ))()}
358
+ className='directory-label'
359
+ >
360
+ <span className='codicon codicon-folder' role='presentation'></span>
361
+ <span className='label' title={directoryLabel}>{directoryLabel}</span>
362
+ </div>
363
+ }
364
365
366
<ActionBarRegion location='right'>
367
<div className='state-label'>{stateLabel}</div>
368
{interruptible &&
0 commit comments