fix: removed refresh table when pagination is off (#5813)
Fixed refresh appearing when pagination is off Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
This commit is contained in:
parent
03c5b31b71
commit
9104770591
1 changed files with 1 additions and 1 deletions
|
|
@ -219,7 +219,7 @@ const TableComponent = forwardRef<
|
|||
}
|
||||
}}
|
||||
/>
|
||||
{!props.tableOptions?.hide_options && (
|
||||
{!props.tableOptions?.hide_options && props.pagination && (
|
||||
<TableOptions
|
||||
tableOptions={props.tableOptions}
|
||||
stateChange={columnStateChange}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue