File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
frontend/src/components/Topics/Topic/Connectors Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 11import React from 'react' ;
22import { FullConnectorInfo } from 'generated-sources' ;
33import { ConnectorsTable } from 'components/Connect/List/ConnectorsTable/ConnectorsTable' ;
4+ import { FilteredConnectorsProvider } from 'components/Connect/model/FilteredConnectorsProvider' ;
45
56type ConnectorsProps = {
67 connectors : FullConnectorInfo [ ] ;
78} ;
89
910const Connectors : React . FC < ConnectorsProps > = ( { connectors } ) => (
10- < ConnectorsTable
11- columnVisibility = { { topics : false } }
12- connectors = { connectors }
13- columnSizingPersistKey = "topic-connectors"
14- />
11+ < FilteredConnectorsProvider >
12+ < ConnectorsTable
13+ columnVisibility = { { topics : false } }
14+ connectors = { connectors }
15+ columnSizingPersistKey = "topic-connectors"
16+ />
17+ </ FilteredConnectorsProvider >
1518) ;
1619
1720export default Connectors ;
You can’t perform that action at this time.
0 commit comments