Skip to content

Commit 2663aef

Browse files
committed
Display directory behind FF
1 parent e79934b commit 2663aef

File tree

1 file changed

+15
-0
lines changed
  • src/vs/workbench/contrib/positronConsole/browser/components

1 file changed

+15
-0
lines changed

src/vs/workbench/contrib/positronConsole/browser/components/actionBar.tsx

+15
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,21 @@ export const ActionBar = (props: ActionBarProps) => {
348348
}
349349
</ActionBarRegion>
350350
}
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+
</div>
365+
}
351366
<ActionBarRegion location='right'>
352367
<div className='state-label'>{stateLabel}</div>
353368
{interruptible &&

0 commit comments

Comments
 (0)