You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
Fix UserSettings for new analyticsOptIn
This commit is contained in:
@@ -86,9 +86,9 @@ const SIMPLE_SETTINGS = [
|
|||||||
// These settings must be defined in SettingsStore
|
// These settings must be defined in SettingsStore
|
||||||
const ANALYTICS_SETTINGS = [
|
const ANALYTICS_SETTINGS = [
|
||||||
{
|
{
|
||||||
id: 'analyticsOptOut',
|
id: 'analyticsOptIn',
|
||||||
fn: function(checked) {
|
fn: function(checked) {
|
||||||
Analytics[checked ? 'disable' : 'enable']();
|
checked ? Analytics.enable() : Analytics.disable();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user