1
0
Fork 0
mirror of synced 2024-07-19 13:15:49 +12:00

Add no column valid message

This commit is contained in:
Adria Navarro 2024-04-11 12:48:06 +02:00
parent 3f85514a0a
commit 9edde27620

View file

@ -148,6 +148,7 @@
<div class="container" class:mobile={$context?.device?.mobile}> <div class="container" class:mobile={$context?.device?.mobile}>
<Layout noPadding> <Layout noPadding>
{#if fieldOptions?.length}
<Body size="S"> <Body size="S">
{#if !filters?.length} {#if !filters?.length}
Add your first filter expression. Add your first filter expression.
@ -243,6 +244,9 @@
Add filter Add filter
</Button> </Button>
</div> </div>
{:else}
<Body size="S">None of the table column can be used for filtering.</Body>
{/if}
</Layout> </Layout>
</div> </div>