mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 22:14:58 +08:00
SecurityUserSettingsTab: Put the event index settings behind the feature flag.
This commit is contained in:
parent
947ea9823d
commit
4aa0658ac8
@ -254,12 +254,15 @@ export default class SecurityUserSettingsTab extends React.Component {
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
const eventIndex = (
|
let eventIndex;
|
||||||
|
if (SettingsStore.isFeatureEnabled("feature_event_indexing")) {
|
||||||
|
eventIndex = (
|
||||||
<div className="mx_SettingsTab_section">
|
<div className="mx_SettingsTab_section">
|
||||||
<span className="mx_SettingsTab_subheading">{_t("Message search")}</span>
|
<span className="mx_SettingsTab_subheading">{_t("Message search")}</span>
|
||||||
<EventIndexPanel />
|
<EventIndexPanel />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// XXX: There's no such panel in the current cross-signing designs, but
|
// XXX: There's no such panel in the current cross-signing designs, but
|
||||||
// it's useful to have for testing the feature. If there's no interest
|
// it's useful to have for testing the feature. If there's no interest
|
||||||
|
Loading…
Reference in New Issue
Block a user