Skip to content

Commit

Permalink
Release: Revert a stale YUI module build which sneaked into v4.3-r4 u…
Browse files Browse the repository at this point in the history
…nfortunately.
  • Loading branch information
abias committed Oct 27, 2024
1 parent d9897a6 commit c6a0128
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ moodle-availability_cohort
Changes
-------

### Unreleased

* 2024-10-27 - Release: Revert a stale YUI module build which sneaked into v4.3-r4 unfortunately.

### v4.3-r4

* 2024-10-27 - Tests: Call parent setup() function when instantiating PHPUnit tests.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ M.availability_cohort.form.getNode = function(json) {
html += '<option value="' + cohort.id + '">' + cohort.name + '</option>';
}
html += '</select></span></label>';
var node = Y.Node.create('<span class="d-flex flex-wrap align-items-center">' + html + '</span>');
var node = Y.Node.create('<span class="form-inline">' + html + '</span>');

// Set initial values (leave default 'choose' if creating afresh).
if (json.creating === undefined) {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ M.availability_cohort.form.getNode = function(json) {
html += '<option value="' + cohort.id + '">' + cohort.name + '</option>';
}
html += '</select></span></label>';
var node = Y.Node.create('<span class="d-flex flex-wrap align-items-center">' + html + '</span>');
var node = Y.Node.create('<span class="form-inline">' + html + '</span>');

// Set initial values (leave default 'choose' if creating afresh).
if (json.creating === undefined) {
Expand Down

0 comments on commit c6a0128

Please sign in to comment.