From acbfd2b893811377d430486827f06bf466564c81 Mon Sep 17 00:00:00 2001 From: Michal Kuklis Date: Thu, 21 Sep 2023 21:06:04 -0400 Subject: [PATCH] UICIRC-982: Freeze the first five selection menus for reminder fees --- CHANGELOG.md | 1 + .../EditSections/ReminderFeesSection/ReminderFeesSection.js | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94a11a78..d7c8fbcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/settings/FinePolicy/components/EditSections/ReminderFeesSection/ReminderFeesSection.js b/src/settings/FinePolicy/components/EditSections/ReminderFeesSection/ReminderFeesSection.js index 3fbb416f..6d957b30 100644 --- a/src/settings/FinePolicy/components/EditSections/ReminderFeesSection/ReminderFeesSection.js +++ b/src/settings/FinePolicy/components/EditSections/ReminderFeesSection/ReminderFeesSection.js @@ -36,6 +36,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) = name="reminderFeesPolicy.countClosed" autoFocus component={Select} + disabled dataOptions={dataOptions} required /> @@ -48,6 +49,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) = label={} name="reminderFeesPolicy.ignoreGracePeriodRecall" component={Select} + disabled dataOptions={dataOptions} /> @@ -59,6 +61,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) = label={} name="reminderFeesPolicy.ignoreGracePeriodHolds" component={Select} + disabled dataOptions={dataOptions} /> @@ -70,6 +73,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) = label={} name="reminderFeesPolicy.allowRenewalOfItemsWithReminderFees" component={Select} + disabled dataOptions={dataOptions} /> @@ -81,6 +85,7 @@ const ReminderFeesSection = ({ sectionOpen, noticeTemplates, blockTemplates }) = label={} name="reminderFeesPolicy.clearPatronBlockWhenPaid" component={Select} + disabled dataOptions={dataOptions} />