mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +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>
|
||||
);
|
||||
|
||||
const eventIndex = (
|
||||
<div className="mx_SettingsTab_section">
|
||||
<span className="mx_SettingsTab_subheading">{_t("Message search")}</span>
|
||||
<EventIndexPanel />
|
||||
</div>
|
||||
);
|
||||
let eventIndex;
|
||||
if (SettingsStore.isFeatureEnabled("feature_event_indexing")) {
|
||||
eventIndex = (
|
||||
<div className="mx_SettingsTab_section">
|
||||
<span className="mx_SettingsTab_subheading">{_t("Message search")}</span>
|
||||
<EventIndexPanel />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// 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
|
||||
|
Loading…
Reference in New Issue
Block a user