mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:14:03 +01:00
Don't expand the directory setting when creating workspace
This commit is contained in:
@@ -20,7 +20,7 @@ export function SyncToFilesystemSetting({
|
||||
}: SyncToFilesystemSettingProps) {
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
return (
|
||||
<details open={forceOpen || value != null} className="w-full">
|
||||
<details open={forceOpen || !!value.filePath} className="w-full">
|
||||
<summary>Data directory {typeof value.initGit === 'boolean' && ' and Git'}</summary>
|
||||
<VStack className="my-2" space={3}>
|
||||
<Banner color="info">
|
||||
|
||||
Reference in New Issue
Block a user