From ec0db8e7b4bf8501b5f2f3713a54cbbd71df5f06 Mon Sep 17 00:00:00 2001 From: Anastasia Beglova Date: Thu, 25 Jan 2024 16:46:44 -0500 Subject: [PATCH 1/2] fix non-credit filter (#1301) --- www/assets/js/lib/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/assets/js/lib/constants.ts b/www/assets/js/lib/constants.ts index 898953998..6b53ef7b6 100644 --- a/www/assets/js/lib/constants.ts +++ b/www/assets/js/lib/constants.ts @@ -468,7 +468,7 @@ export const FACET_OPTIONS: Facets = { department_name: Object.values(departments).map( department => department.title ), - level: ["Undergraduate", "Graduate", "Non Credit", "High School"], + level: ["Undergraduate", "Graduate", "Non-Credit", "High School"], course_feature_tags: RESOURCE_TYPES, resource_type: RESOURCE_TYPES } From f9b8830ae2b5dc7d142ba5b1409dacfb16c1b476 Mon Sep 17 00:00:00 2001 From: Doof Date: Thu, 25 Jan 2024 21:48:10 +0000 Subject: [PATCH 2/2] Release 1.104.2 --- RELEASE.rst | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/RELEASE.rst b/RELEASE.rst index 00824512f..ff1db54eb 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,11 @@ Release Notes ============= +Version 1.104.2 +--------------- + +- fix non-credit filter (#1301) + Version 1.104.1 (Released January 25, 2024) --------------- diff --git a/package.json b/package.json index b3fd2e2f0..85bda7e8d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocw-hugo-themes", - "version": "1.104.1", + "version": "1.104.2", "description": "A Hugo theme for building OCW websites", "repository": "mitodl/ocw-hugo-themes", "main": "base-theme/assets/index.js",