docs: clarify git mount target path hint

This commit is contained in:
Alex Blank
2026-05-27 15:34:50 +02:00
parent e23dcdf4e1
commit 23485833d8
+1 -1
View File
@@ -198,7 +198,7 @@ const GitMountForm = ({ mount, onSave, onCancel, validatePath, validateUrl, isNe
placeholder="e.g., /app/config"
className={errors.target_path ? "error" : ""}
/>
<span className="hint">Absolute or relative path inside container (relative resolved against working dir)</span>
<span className="hint">Use absolute path (e.g. /app/config). Relative paths need working_directory set in tool config.</span>
{errors.target_path && <span className="error-text">{errors.target_path}</span>}
</div>