From 5d00f604ae79f23d4be6122d47974040b32ef72b Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Thu, 24 Aug 2023 11:23:47 +0200 Subject: [PATCH] show source field for changesets by default in the upload form --- CHANGELOG.md | 1 + modules/ui/changeset_editor.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15ac3cd68..09892ea59 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 d929a72d9..292136bd5 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 }), ];