Skip to content

Commit

Permalink
UICIRC-1014: Fix wrong position of Cancel and Save & close button
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitriy-Litvinenko committed Oct 31, 2023
1 parent dea3cee commit c4cfb40
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Also support `feesfines` interface version `19.0`. Refs UICIRC-992.
* Remove `None` option from notice methods. Fixes UICIRC-995.
* Fix wrong position of "Cancel" and "Save & close" button. Refs UICIRC-1014.

## [9.0.0](https://github.com/folio-org/ui-circulation/tree/v9.0.0) (2023-10-12)
[Full Changelog](https://github.com/folio-org/ui-circulation/compare/v8.0.1...v9.0.0)
Expand Down
3 changes: 3 additions & 0 deletions src/settings/LostItemFeePolicy/LostItemFeePolicyForm.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.lostItemFeePolicyForm {
height: 100%;
}
3 changes: 3 additions & 0 deletions src/settings/LostItemFeePolicy/LostItemFeePolicyForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ import {

import { transformModelBooleans } from './utils/normalize';

import css from './LostItemFeePolicyForm.css';

class LostItemFeePolicyForm extends React.Component {
static propTypes = {
stripes: stripesShape.isRequired,
Expand Down Expand Up @@ -102,6 +104,7 @@ class LostItemFeePolicyForm extends React.Component {
return (
<form
data-testid="lostItemFeePolicyForm"
className={css.lostItemFeePolicyForm}
noValidate
data-test-lost-item-fee-policy-form
onSubmit={handleSubmit}
Expand Down

0 comments on commit c4cfb40

Please sign in to comment.