Skip to content

Commit 85d3289

Browse files
committed
fix: missing params.
1 parent a901050 commit 85d3289

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/routes/(console)/project-[region]-[project]/functions/function-[function]/settings/updateRepository.svelte

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,5 +274,9 @@
274274
<DisconnectRepo bind:show={showDisconnect} on:success={loadRepository} />
275275
{/if}
276276
{#if showSelectRoot}
277-
<SelectRootModal bind:show={showSelectRoot} product="sites" bind:rootDir={selectedDir} />
277+
<SelectRootModal
278+
bind:show={showSelectRoot}
279+
product="sites"
280+
bind:rootDir={selectedDir}
281+
branch={selectedBranch} />
278282
{/if}

src/routes/(console)/project-[region]-[project]/sites/site-[site]/settings/updateRepository.svelte

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,5 +269,9 @@
269269
{/if}
270270

271271
{#if showSelectRoot}
272-
<SelectRootModal bind:show={showSelectRoot} product="sites" bind:rootDir={selectedDir} />
272+
<SelectRootModal
273+
bind:show={showSelectRoot}
274+
product="sites"
275+
bind:rootDir={selectedDir}
276+
branch={selectedBranch} />
273277
{/if}

0 commit comments

Comments
 (0)