Skip to content

Commit

Permalink
Merge pull request #12893 from rtibbles/multiple_facility_continue
Browse files Browse the repository at this point in the history
Conditionalize hideContinue on whether we are displaying an error or not
  • Loading branch information
rtibbles authored Dec 3, 2024
2 parents ff9e481 + 49caa38 commit 2869ee5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kolibri/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:footerMessageType="loading ? null : footerMessageType"
:step="loading ? null : 1"
:steps="loading ? null : 5"
:hideContinue="true"
:hideContinue="Boolean(errorMessage)"
@continue="handleContinue"
>
<UiAlert
Expand Down

0 comments on commit 2869ee5

Please sign in to comment.