mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 19:00:59 +03:00
* fix: apply search filter to tools list view * tools table filtering * lint fix --------- Co-authored-by: Henry Heng <henryheng@flowiseai.com>
This commit is contained in:
@@ -245,7 +245,11 @@ const Tools = () => {
|
|||||||
))}
|
))}
|
||||||
</Box>
|
</Box>
|
||||||
) : (
|
) : (
|
||||||
<ToolsTable data={getAllToolsApi.data.data} isLoading={isLoading} onSelect={edit} />
|
<ToolsTable
|
||||||
|
data={getAllToolsApi.data?.data?.filter(filterTools) || []}
|
||||||
|
isLoading={isLoading}
|
||||||
|
onSelect={edit}
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
{/* Pagination and Page Size Controls */}
|
{/* Pagination and Page Size Controls */}
|
||||||
<TablePagination currentPage={currentPage} limit={pageLimit} total={total} onChange={onChange} />
|
<TablePagination currentPage={currentPage} limit={pageLimit} total={total} onChange={onChange} />
|
||||||
|
|||||||
Reference in New Issue
Block a user