diff --git a/packages/client/src/components/Component.svelte b/packages/client/src/components/Component.svelte index 2a1782bb92..b32222ce2f 100644 --- a/packages/client/src/components/Component.svelte +++ b/packages/client/src/components/Component.svelte @@ -6,7 +6,6 @@ import { enrichProps, propsAreSame } from "../utils/componentProps" import { builderStore } from "../store" import { hashString } from "../utils/hash" - import { processStringSync } from "@budibase/string-templates" export let definition = {} @@ -97,14 +96,12 @@ {#if constructor && componentProps} {#key propsHash} -
I am a {definition._component}
-
{processStringSync('foo: {{ bar }}', { bar: 'bar' })}
- - - - - - - + + {#if children.length} + {#each children as child (child._id)} + + {/each} + {/if} + {/key} {/if}