fix: Preserve dev server working directory when editing script from preview (Vibe Kanban) (#1568)

This commit is contained in:
Gabriel Gordon-Hall
2025-12-16 16:58:46 +00:00
committed by GitHub
parent d58211f6c0
commit 8eb38ec476

View File

@@ -82,7 +82,11 @@ export function NoServerContent({
updateProject.mutate(
{
projectId: project.id,
data: { name: null, dev_script: script, dev_script_working_dir: null },
data: {
name: null,
dev_script: script,
dev_script_working_dir: project.dev_script_working_dir ?? null,
},
},
{
onSuccess: () => {