show source field for changesets by default in the upload form

This commit is contained in:
Martin Raifer
2023-08-24 11:23:47 +02:00
parent 68ff64b01d
commit 5d00f604ae
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -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
+1 -1
View File
@@ -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 }),
];