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:
Lucas Oliveira 2025-01-20 17:05:09 -03:00 committed by GitHub
commit 9104770591
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -219,7 +219,7 @@ const TableComponent = forwardRef<
}
}}
/>
{!props.tableOptions?.hide_options && (
{!props.tableOptions?.hide_options && props.pagination && (
<TableOptions
tableOptions={props.tableOptions}
stateChange={columnStateChange}