Skip to content

Commit

Permalink
show source field for changesets by default in the upload form
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrasd committed Oct 10, 2023
1 parent 68ff64b commit 5d00f60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion modules/ui/changeset_editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }),
];

Expand Down

0 comments on commit 5d00f60

Please sign in to comment.