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 4ed5e88 commit 2a96c1eCopy full SHA for 2a96c1e
frontend/src/components/ClusterPage/ClusterPage.tsx
@@ -61,8 +61,10 @@ const ClusterPage: React.FC = () => {
61
hasAclViewConfigured:
62
features.includes(ClusterFeaturesEnum.KAFKA_ACL_VIEW) ||
63
features.includes(ClusterFeaturesEnum.KAFKA_ACL_EDIT),
64
- ftsEnabled: true,
65
- ftsDefaultEnabled: true,
+ ftsEnabled: features.includes(ClusterFeaturesEnum.FTS_ENABLED),
+ ftsDefaultEnabled: features.includes(
66
+ ClusterFeaturesEnum.FTS_DEFAULT_ENABLED
67
+ ),
68
};
69
}, [clusterName, data]);
70
0 commit comments