Skip to content

Commit

Permalink
UICIRC-982: Freeze the first five selection menus for reminder fees (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mkuklis authored Sep 22, 2023
1 parent 7194d98 commit c91b27e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
* *BREAKING* bump `react-intl` to `v6.4.4`. Refs UICIRC-977.
* Add informational message for Holds to New Request Policy page. Refs UICIRC-981.
* Restore previously deleted Jest/RTL tests that were failing. Refs UICIRC-971.
* Freeze the first five selection menus for reminder fees. Refs UICIRC-982.

## [8.0.1](https://github.com/folio-org/ui-circulation/tree/v8.0.1) (2023-03-07)
[Full Changelog](https://github.com/folio-org/ui-circulation/compare/v8.0.0...v8.0.1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) =
name="reminderFeesPolicy.countClosed"
autoFocus
component={Select}
disabled
dataOptions={dataOptions}
required
/>
Expand All @@ -48,6 +49,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) =
label={<FormattedMessage id="ui-circulation.settings.finePolicy.reminderFees.ignoreGracePeriodRecall" />}
name="reminderFeesPolicy.ignoreGracePeriodRecall"
component={Select}
disabled
dataOptions={dataOptions}
/>
</Col>
Expand All @@ -59,6 +61,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) =
label={<FormattedMessage id="ui-circulation.settings.finePolicy.reminderFees.ignoreGracePeriodHolds" />}
name="reminderFeesPolicy.ignoreGracePeriodHolds"
component={Select}
disabled
dataOptions={dataOptions}
/>
</Col>
Expand All @@ -70,6 +73,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) =
label={<FormattedMessage id="ui-circulation.settings.finePolicy.reminderFees.allowRenewalOfItemsWithReminderFees" />}
name="reminderFeesPolicy.allowRenewalOfItemsWithReminderFees"
component={Select}
disabled
dataOptions={dataOptions}
/>
</Col>
Expand All @@ -81,6 +85,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) =
label={<FormattedMessage id="ui-circulation.settings.finePolicy.reminderFees.clearPatronBlockWhenPaid" />}
name="reminderFeesPolicy.clearPatronBlockWhenPaid"
component={Select}
disabled
dataOptions={dataOptions}
/>
</Col>
Expand Down

0 comments on commit c91b27e

Please sign in to comment.