@@ -392,6 +392,21 @@ const PopupDefaultExample = ({
392392 />
393393 </ label >
394394 </ div >
395+ { switcherMode !== 'sessions' && (
396+ < div style = { { ...rowStyle , gap : '8px' } } >
397+ < span style = { labelStyle } > Working Dir</ span >
398+ < div style = { { color : '#aaa' , fontSize : '12px' , overflow : 'hidden' , textOverflow : 'ellipsis' , whiteSpace : 'nowrap' , flex : 1 , textAlign : 'right' } } >
399+ { workingFolderPath || 'None' }
400+ </ div >
401+ < button
402+ onClick = { ( ) => openFolderSelector ( ) }
403+ style = { { backgroundColor : 'transparent' , border : '1px solid #555' , borderRadius : '4px' , padding : '2px 6px' , cursor : 'pointer' , fontSize : '12px' , color : THEME . text . primary , flexShrink : 0 } }
404+ title = "Change Folder"
405+ >
406+ 📁
407+ </ button >
408+ </ div >
409+ ) }
395410 </ div >
396411
397412 { /* Projects settings (only in Projects tab) */ }
@@ -437,19 +452,6 @@ const PopupDefaultExample = ({
437452 </ button >
438453 ) }
439454 </ div >
440- < div style = { { ...rowStyle , gap : '8px' } } >
441- < span style = { labelStyle } > Working Dir</ span >
442- < div style = { { color : '#aaa' , fontSize : '12px' , overflow : 'hidden' , textOverflow : 'ellipsis' , whiteSpace : 'nowrap' , flex : 1 , textAlign : 'right' } } >
443- { workingFolderPath || 'None' }
444- </ div >
445- < button
446- onClick = { ( ) => openFolderSelector ( ) }
447- style = { { backgroundColor : 'transparent' , border : '1px solid #555' , borderRadius : '4px' , padding : '2px 6px' , cursor : 'pointer' , fontSize : '12px' , color : THEME . text . primary , flexShrink : 0 } }
448- title = "Change Folder"
449- >
450- 📁
451- </ button >
452- </ div >
453455 </ div >
454456 ) }
455457
0 commit comments