Skip to content

Commit

Permalink
Release v10.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Terala-Priyanka committed Oct 23, 2023
1 parent 1083694 commit be6f6fe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [10.1.0] IN PROGRESS

## [10.0.2](https://github.com/folio-org/ui-users/tree/v10.0.2) (2023-10-23)
[Full Changelog](https://github.com/folio-org/ui-users/compare/v10.0.1...v10.0.2)

* Pass location.search parameter through history search. Refs UIU-2971.

## [10.0.1](https://github.com/folio-org/ui-users/tree/v10.0.1) (2023-10-18)
[Full Changelog](https://github.com/folio-org/ui-users/compare/v10.0.0...v10.0.1)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@folio/users",
"version": "10.0.1",
"version": "10.0.2",
"description": "User management",
"repository": "folio-org/ui-users",
"publishConfig": {
Expand Down
3 changes: 2 additions & 1 deletion src/views/UserEdit/UserEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,9 @@ class UserEdit extends React.Component {
onSubmit={onSubmit}
onCancel={() => {
history.push({
pathname: params.id ? `/users/preview/${params.id}${location.search}` : '/users',
pathname: params.id ? `/users/preview/${params.id}` : '/users',
state: location.state,
search: location.search,
});
}}
uniquenessValidator={this.props.mutator.uniquenessValidator}
Expand Down

0 comments on commit be6f6fe

Please sign in to comment.