Skip to content

Commit

Permalink
Release v4.3-r4
Browse files Browse the repository at this point in the history
  • Loading branch information
abias committed Oct 27, 2024
1 parent d3373cd commit d9897a6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ moodle-availability_cohort
Changes
-------

### Unreleased
### v4.3-r4

* 2024-10-27 - Tests: Call parent setup() function when instantiating PHPUnit tests.

Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'availability_cohort';
$plugin->version = 2023102002;
$plugin->release = 'v4.3-r3';
$plugin->version = 2023102003;
$plugin->release = 'v4.3-r4';
$plugin->requires = 2023100900;
$plugin->supported = [403, 403];
$plugin->maturity = MATURITY_STABLE;
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="form-inline">' + html + '</span>');
var node = Y.Node.create('<span class="d-flex flex-wrap align-items-center">' + 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="form-inline">' + html + '</span>');
var node = Y.Node.create('<span class="d-flex flex-wrap align-items-center">' + html + '</span>');

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

0 comments on commit d9897a6

Please sign in to comment.