diff --git a/app/soapbox/actions/soapbox.js b/app/soapbox/actions/soapbox.js index 5de94328b..e732b1f40 100644 --- a/app/soapbox/actions/soapbox.js +++ b/app/soapbox/actions/soapbox.js @@ -42,7 +42,7 @@ export const defaultConfig = ImmutableMap({ }), allowedEmoji: allowedEmoji, verifiedCanEditName: false, - displayFqn: false, + displayFqn: true, }); export function getSoapboxConfig(state) { diff --git a/app/soapbox/features/soapbox_config/index.js b/app/soapbox/features/soapbox_config/index.js index 21744cc10..3b5102f2a 100644 --- a/app/soapbox/features/soapbox_config/index.js +++ b/app/soapbox/features/soapbox_config/index.js @@ -41,6 +41,7 @@ const messages = defineMessages({ rawJSONLabel: { id: 'soapbox_config.raw_json_label', defaultMessage: 'Advanced: Edit raw JSON data' }, rawJSONHint: { id: 'soapbox_config.raw_json_hint', defaultMessage: 'Edit the settings data directly. Changes made directly to the JSON file will override the form fields above. Click "Save" to apply your changes.' }, verifiedCanEditNameLabel: { id: 'soapbox_config.verified_can_edit_name_label', defaultMessage: 'Allow verified users to edit their own display name.' }, + displayFqnLabel: { id: 'soapbox_config.display_fqn_label', defaultMessage: 'Display domain even for local accounts.' }, }); const listenerOptions = supportsPassiveEvents ? { passive: true } : false; @@ -241,6 +242,12 @@ class SoapboxConfig extends ImmutablePureComponent { checked={soapbox.get('verifiedCanEditName') === true} onChange={this.handleChange(['verifiedCanEditName'], (e) => e.target.checked)} /> + e.target.checked)} + />