From e32b1032a62fc0f8416774d999f9a3e1b50a7dfc Mon Sep 17 00:00:00 2001 From: Richard Tibbles Date: Wed, 27 Nov 2024 16:07:55 -0800 Subject: [PATCH 1/3] Conditionalize hideContinue on whether we are displaying an error or not --- .../setup_wizard/assets/src/views/SelectFacilityForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolibri/plugins/setup_wizard/assets/src/views/SelectFacilityForm.vue b/kolibri/plugins/setup_wizard/assets/src/views/SelectFacilityForm.vue index 57860f7df99..dc1d7beb2aa 100644 --- a/kolibri/plugins/setup_wizard/assets/src/views/SelectFacilityForm.vue +++ b/kolibri/plugins/setup_wizard/assets/src/views/SelectFacilityForm.vue @@ -8,7 +8,7 @@ :footerMessageType="loading ? null : footerMessageType" :step="loading ? null : 1" :steps="loading ? null : 5" - :hideContinue="true" + :hideContinue="Boolean(errorMessage)" @continue="handleContinue" > Date: Mon, 2 Dec 2024 16:28:21 -0800 Subject: [PATCH 2/3] Bump version to 0.17.4 --- kolibri/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolibri/__init__.py b/kolibri/__init__.py index 9ea183211df..04dfc796198 100755 --- a/kolibri/__init__.py +++ b/kolibri/__init__.py @@ -11,7 +11,7 @@ #: This may not be the exact version as it's subject to modification with #: get_version() - use ``kolibri.__version__`` for the exact version string. -VERSION = (0, 17, 3) +VERSION = (0, 17, 4) __author__ = "Learning Equality" __email__ = "info@learningequality.org" From c7ddfdb0632d9da8ac99291e567af4a6924c76ce Mon Sep 17 00:00:00 2001 From: Marcella Maki Date: Tue, 3 Dec 2024 12:36:46 -0500 Subject: [PATCH 3/3] Update changelog for 0.17.4 --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46d5fa9ffef..0e5e535ed92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ List of the most important changes for each release. +## 0.17.4 + +### Fixed +- Ensures users can 'Continue' from the SelectFacilityForm component in SetupWizard by @rtibbles in https://github.com/learningequality/kolibri/pull/12893 + + ## 0.17.3 ### Changed