Browse Source

Disable validation for search fields in table block

master
Andrew Kingston 5 years ago
parent
commit
c0eb27e8d1
  1. 6
      packages/client/src/components/app/blocks/TableBlock.svelte

6
packages/client/src/components/app/blocks/TableBlock.svelte

@ -106,7 +106,11 @@
{#if schemaLoaded}
<Block>
<div class={size} use:styleable={$component.styles}>
<BlockComponent type="form" bind:id={formId} props={{ dataSource }}>
<BlockComponent
type="form"
bind:id={formId}
props={{ dataSource, disableValidation: true }}
>
{#if title || enrichedSearchColumns?.length || showTitleButton}
<div class="header" class:mobile={$context.device.mobile}>
<div class="title">

Loading…
Cancel
Save