From 6aea343d4f5985de912b94220e6bc2cfcd4c5152 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Wed, 19 Mar 2025 11:41:14 -0700 Subject: [PATCH] Shorten data directory description --- src-web/components/SyncToFilesystemSetting.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src-web/components/SyncToFilesystemSetting.tsx b/src-web/components/SyncToFilesystemSetting.tsx index 2adc65bc..1a6402c2 100644 --- a/src-web/components/SyncToFilesystemSetting.tsx +++ b/src-web/components/SyncToFilesystemSetting.tsx @@ -23,7 +23,7 @@ export function SyncToFilesystemSetting({ const [isNonEmpty, setIsNonEmpty] = useState(null); return (
- Data directory {typeof value.initGit === 'boolean' && ' and Git'} + Data directory {isNonEmpty ? ( @@ -43,12 +43,11 @@ export function SyncToFilesystemSetting({ - ) : ( + ) : !value.filePath ? ( - Sync workspace data to folder as plain text files, ideal for backup and Git - collaboration. Environments are excluded in order to keep your secrets private. + Sync data to a folder for backup and Git integration. - )} + ) : null}