Removed unnecessary block configuration elements

This commit is contained in:
Dean 2022-10-24 16:21:08 +01:00
parent 3086e87f0e
commit f0881dff48
1 changed files with 29 additions and 39 deletions

View File

@ -1,8 +1,6 @@
<script>
import { getContext } from "svelte"
import Block from "components/Block.svelte"
import BlockComponent from "components/BlockComponent.svelte"
import Placeholder from "components/app/Placeholder.svelte"
import { makePropSafe as safe } from "@budibase/string-templates"
// Datasource
@ -48,8 +46,6 @@
export let lowColumn
export let dateColumn
const component = getContext("component")
let dataProviderId
$: colors = c1 && c2 && c3 && c4 && c5 ? [c1, c2, c3, c4, c5] : null
@ -67,11 +63,7 @@
sortOrder,
limit,
}}
order={0}
>
{#if $component.empty}
<Placeholder />
{:else}
<BlockComponent
type={chartType}
props={{
@ -100,8 +92,6 @@
lowColumn,
dateColumn,
}}
order={1}
/>
{/if}
</BlockComponent>
</Block>