Skip to content

Commit

Permalink
Merge branch 'master' into UIU-1191
Browse files Browse the repository at this point in the history
  • Loading branch information
Terala-Priyanka committed Dec 18, 2024
2 parents c381745 + c58915b commit 408e93d
Show file tree
Hide file tree
Showing 61 changed files with 2,061 additions and 117 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
* Add optional column "Retrieval service point" to requests search list. Refs UIREQ-1188.
* Increase code coverage for src/ChooseRequestTypeDialog.js by Jest/RTL tests. Refs UIREQ-1044.
* Cleanup retrieval service point implementation from deprecated folder. Refs UIREQ-1211.
* Increase code coverage for src/ViewRequest.js by Jest/RTL tests. Refs UIREQ-1046.
* React v19: refactor away from default props for functional components. Refs UIREQ-1101.
* Add "Retrieval service point" filter. Refs UIREQ-1190.
* Include `Retrieval service point` column in csv exports. Refs UIREQ-1191.

## [11.0.2] (https://github.com/folio-org/ui-requests/tree/v11.0.2) (2024-12-10)
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@
"inflected": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.0",
"react-intl": "^6.4.4",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "^0.13.9"
Expand All @@ -220,6 +221,7 @@
"@folio/stripes": "^9.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.0",
"react-intl": "^6.4.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
Expand Down
6 changes: 1 addition & 5 deletions src/ItemsDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const ItemsDialog = ({
onRowClick = noop,
mutator,
skippedItemId,
title,
title = '',
instanceId,
}) => {
const [areItemsBeingLoaded, setAreItemsBeingLoaded] = useState(false);
Expand Down Expand Up @@ -233,10 +233,6 @@ ItemsDialog.manifest = {
},
};

ItemsDialog.defaultProps = {
title: '',
};

ItemsDialog.propTypes = {
open: PropTypes.bool.isRequired,
onClose: PropTypes.func.isRequired,
Expand Down
Loading

0 comments on commit 408e93d

Please sign in to comment.