Merge pull request #3332 from matrix-org/travis/fix-i18n
Don't double translate labs settings
This commit is contained in:
commit
fb38787c37
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ export class LabsSettingToggle extends React.Component {
|
|||
};
|
||||
|
||||
render() {
|
||||
const label = _t(SettingsStore.getDisplayName(this.props.featureId));
|
||||
const label = SettingsStore.getDisplayName(this.props.featureId);
|
||||
const value = SettingsStore.isFeatureEnabled(this.props.featureId);
|
||||
return <LabelledToggleSwitch value={value} label={label} onChange={this._onChange} />;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue