Rename Flair feature to Groups

pull/21833/head
Luke Barnard 2017-09-29 10:27:40 +01:00
parent 739ddb8410
commit 18e0d8da86
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ export default {
}, },
{ {
name: "-", name: "-",
id: 'feature_flair', id: 'feature_groups',
default: false, default: false,
}, },
], ],
@ -43,7 +43,7 @@ export default {
// horrible but it works. The locality makes this somewhat more palatable. // horrible but it works. The locality makes this somewhat more palatable.
doTranslations: function() { doTranslations: function() {
this.LABS_FEATURES[0].name = _t("Matrix Apps"); this.LABS_FEATURES[0].name = _t("Matrix Apps");
this.LABS_FEATURES[1].name = _t("Flair"); this.LABS_FEATURES[1].name = _t("Groups");
}, },
loadProfileInfo: function() { loadProfileInfo: function() {

View File

@ -191,7 +191,7 @@ export default class Flair extends React.Component {
componentWillMount() { componentWillMount() {
this._unmounted = false; this._unmounted = false;
if (UserSettingsStore.isFeatureEnabled('feature_flair') && groupSupport) { if (UserSettingsStore.isFeatureEnabled('feature_groups') && groupSupport) {
this._generateAvatars(); this._generateAvatars();
} }
} }