Skip to content

Commit

Permalink
Merge pull request #122 from KPMP/develop
Browse files Browse the repository at this point in the history
Release v6.5
  • Loading branch information
rlreamy authored Oct 8, 2024
2 parents 102035b + 619956e commit d153e5d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
17 changes: 16 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
# Changelog

## Release 1.5 (unreleased)
## Release 1.6 (unreleased)
Brief summary of what's in this release:

### Breaking changes
Breaking changes include any database updates needed, if we need to edit any files on system (like .env or certs, etc). Things that are outside of the code itself that need changed for the system to work.

### Non-breaking changes
Just a place to keep track of things that have changed in the code that we may want to pay special attention to when smoke testing, etc.

----

## Release 1.5 (10/3/2024)
Brief summary of what's in this release:
- "Recently released" is on both tabs
- Experimental Strategy sorting improvements
- Remove download GA event (moved to Atlas File Service)
- Participant ID visibility fix

### Breaking changes
None

### Non-breaking changes
- fixed a bug where the participant filters wouldn't go back to their default state after clicking the Clear Filters button

----

## Release 1.4 (released 07/08/2024)
Expand Down
11 changes: 11 additions & 0 deletions src/components/Repository/FileList.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,13 @@ class FileList extends Component {
hideable: false,
defaultHidden: true,
isSortField: true
},
{
name: 'doi_sort',
sortable: false,
hideable: false,
defaultHidden: true,
isSortField: true
}
];
return columns;
Expand Down Expand Up @@ -427,6 +434,7 @@ class FileList extends Component {
{ columnName: 'participant_id_sort', width: 0 },
{ columnName: 'platform_sort', width: 0 },
{ columnName: 'experimental_strategy_sort', width: 0 },
{ columnName: 'doi_sort', width: 0 },
]
};

Expand Down Expand Up @@ -576,6 +584,9 @@ class FileList extends Component {
else if (val.columnName === "experimental_strategy") {
return { field: "experimental_strategy_sort", direction: val.direction }
}
else if (val.columnName === "dois") {
return { field: "doi_sort", direction: val.direction }
}
else {
return { field: val.columnName, direction: val.direction }
}
Expand Down

0 comments on commit d153e5d

Please sign in to comment.