Skip to content

Commit

Permalink
fix(frontend): fix app preview (#979)
Browse files Browse the repository at this point in the history
  • Loading branch information
fatonramadani committed Dec 3, 2022
1 parent 7c1b1c0 commit 129a0ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -10,7 +10,7 @@
const { worldStore } = getContext<AppEditorContext>('AppEditorContext')
$: input && handleConnection()
$: $worldStore && handleConnection()
function handleConnection() {
if (input.type === 'output') {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/components/common/table/FlowRow.svelte
Expand Up @@ -42,7 +42,7 @@
</script>

<Row
href={`/flows/get/${path}`}
href={`/flows/run/${path}`}
kind="flow"
workspaceId={workspace_id ?? $workspaceStore ?? ''}
{marked}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/components/common/table/ScriptRow.svelte
Expand Up @@ -49,7 +49,7 @@
</script>

<Row
href={`/scripts/get/${hash}`}
href={`/scripts/run/${hash}`}
kind="script"
{marked}
{path}
Expand Down

0 comments on commit 129a0ad

Please sign in to comment.