diff --git a/CHANGELOG.md b/CHANGELOG.md index 15ac3cd68b..09892ea59b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ _Breaking developer changes, which may affect downstream projects or sites that #### :tada: New Features #### :sparkles: Usability & Accessibility +* Show field for changeset sources by default in the upload form #### :scissors: Operations #### :camera: Street-Level #### :white_check_mark: Validation diff --git a/modules/ui/changeset_editor.js b/modules/ui/changeset_editor.js index d929a72d9e..292136bd50 100644 --- a/modules/ui/changeset_editor.js +++ b/modules/ui/changeset_editor.js @@ -33,7 +33,7 @@ export function uiChangesetEditor(context) { _fieldsArr = [ uiField(context, presets.field('comment'), null, { show: true, revert: false }), - uiField(context, presets.field('source'), null, { show: false, revert: false }), + uiField(context, presets.field('source'), null, { show: true, revert: false }), uiField(context, presets.field('hashtags'), null, { show: false, revert: false }), ];