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