diff --git a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/DataSourceSelect.svelte b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/DataSourceSelect.svelte index 88b30160e1..76b0a984bd 100644 --- a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/DataSourceSelect.svelte +++ b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/DataSourceSelect.svelte @@ -5,8 +5,10 @@ Popover, Divider, Select, + Layout, Heading, Drawer, + DrawerContent, } from "@budibase/bbui" import { createEventDispatcher } from "svelte" import { store, currentAsset } from "builderStore" @@ -103,38 +105,38 @@ {#if value?.type === "query"} -
- -
-
- {#if value.parameters.length > 0} - query._id === value._id) - .parameters} - bindings={queryBindableProperties} + + + + {#if value.parameters.length > 0} + query._id === value._id) + .parameters} + bindings={queryBindableProperties} + /> + {/if} + ds._id === value.datasourceId + )} + editable={false} /> - {/if} - ds._id === value.datasourceId - )} - editable={false} - /> -
+ +
{/if}