diff options
Diffstat (limited to 'web/pw-server/src/routes')
-rw-r--r-- | web/pw-server/src/routes/index.svelte | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/pw-server/src/routes/index.svelte b/web/pw-server/src/routes/index.svelte index 1ef5c68..031b60b 100644 --- a/web/pw-server/src/routes/index.svelte +++ b/web/pw-server/src/routes/index.svelte @@ -59,7 +59,7 @@ matches.unshift(matchData); matches = matches; - selectMatch(matchData["id"]); + await selectMatch(matchData["id"]); } async function selectMatch(matchId: string) { @@ -158,14 +158,14 @@ </ul> </div> <div class="editor-container"> - {#if selectedMatchLog} + {#if selectedMatchId} <Visualizer matchLog={selectedMatchLog} /> {:else} <EditorView {editSession} /> {/if} </div> <div class="sidebar-right"> - {#if selectedMatchLog} + {#if selectedMatchId} <OutputPane matchLog={selectedMatchLog} /> {:else} <SubmitPane on:submit={submitCode} /> |