diff --git a/app/assets/javascripts/blacklight_cornell_requests/requests.js.coffee b/app/assets/javascripts/blacklight_cornell_requests/requests.js.coffee index d0b9837..7e4d563 100644 --- a/app/assets/javascripts/blacklight_cornell_requests/requests.js.coffee +++ b/app/assets/javascripts/blacklight_cornell_requests/requests.js.coffee @@ -102,7 +102,7 @@ requests = suppressPickup: (excludedPickups, selectedPickup) -> $.each excludedPickups, (i, location_id) -> # temporary Covid-19 hack for limited pickup locations. We do not want any of these 5 getting removed from the select - if location_id != 172 and location_id != 159 and location_id != 188 and location_id != 151 and location_id != 157 + if location_id != 172 and location_id != 159 and location_id != 188 and location_id != 151 and location_id != 157 and location_id != 149 console.log(location_id) targetedPickup = '#pickup-locations option[value="' + location_id + '"]' $(targetedPickup).remove() diff --git a/app/views/shared/_reqpu.html.haml b/app/views/shared/_reqpu.html.haml index 7862bda..4e20c2b 100644 --- a/app/views/shared/_reqpu.html.haml +++ b/app/views/shared/_reqpu.html.haml @@ -19,8 +19,8 @@ -# %option{:value => "219", 'data-bd-code': 'M'} Ornithology Circulation - if special_delivery_options.present? - special_delivery_options.each do |special_option| - -# %option{:value => special_option[:value], 'data-bd-code': special_option[:bd_value]} #{special_option[:label]} + %option{:value => special_option[:value], 'data-bd-code': special_option[:bd_value]} #{special_option[:label]} %option{:value => "188"} Uris Clock Tower -# %option{:value => "189", 'data-bd-code': 'E'} Vet Circulation - if special_delivery_options.present? - -# %p NOTE: You are eligible for one or more special program delivery options. Select one of the 'Special Program Delivery' choices from the list above. + %p NOTE: You are eligible for one or more special program delivery options. Select one of the 'Special Program Delivery' choices from the list above. diff --git a/lib/blacklight_cornell_requests/version.rb b/lib/blacklight_cornell_requests/version.rb index 3afbc85..48206ef 100755 --- a/lib/blacklight_cornell_requests/version.rb +++ b/lib/blacklight_cornell_requests/version.rb @@ -1,3 +1,3 @@ module BlacklightCornellRequests - VERSION = "3.2.5" + VERSION = "3.2.6" end diff --git a/release_notes.md b/release_notes.md index 5fdfadf..099f086 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,5 +1,8 @@ # Release Notes - blacklight-cornell-requests +## v3.2.6 +- Restore special delivery options on the request form. + ## v3.2.5 - Add the Fine Arts Library to the list of valid, "requestable" libraries.