We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 552c305 commit 40d6a38Copy full SHA for 40d6a38
frontend/src/components/Topics/List/ListPage.tsx
@@ -13,11 +13,14 @@ import TopicTable from 'components/Topics/List/TopicTable';
13
import { Action, ResourceType } from 'generated-sources';
14
import ResourcePageHeading from 'components/common/ResourcePageHeading/ResourcePageHeading';
15
import Fts from 'components/common/Fts/Fts';
16
+import useFts from 'components/common/Fts/useFts';
17
18
const ListPage: React.FC = () => {
19
const { isReadOnly } = React.useContext(ClusterContext);
20
const [searchParams, setSearchParams] = useSearchParams();
21
22
+ useFts('topics');
23
+
24
// Set the search params to the url based on the localStorage value
25
React.useEffect(() => {
26
if (!searchParams.has('perPage')) {
0 commit comments