Making it so that the filter table button isn't disabled when the filter/search didn't return any data.

This commit is contained in:
mike12345567 2022-04-27 16:58:29 +01:00
parent 00c67289b0
commit ad26d29de5
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@
<TableFilterButton <TableFilterButton
{schema} {schema}
on:change={onFilter} on:change={onFilter}
disabled={!hasCols || !hasRows} disabled={!hasCols}
/> />
{/key} {/key}
</div> </div>