Skip to content

Commit 9929b03

Browse files
committed
Fix #739.
1 parent 4854b45 commit 9929b03

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
# Change Log
22

3-
## v.4.0.22-Alpha
3+
## v4.0.23-Alpha
4+
5+
- Set module dependency versions to ~4.0.0 instead of ^4.0.0 (since 4.1.x will introduce breaking changes)
6+
- Fix bug in ufCollection
7+
8+
## v4.0.22-Alpha
49
- Fix issue where 'Change User Password' popup form couldn't handle specifying a new password.
510
- Display message when there are no results in `ufTable`
611

7-
## v.4.0.21-Alpha
12+
## v4.0.21-Alpha
813
- Implement reflow and column selector for tables (#670)
914
- Overhauled ufAlerts, improving efficiency, reliability, and fixed a discovered edge case that caused `render` to never complete. (part of #646)
1015
- ufAlerts will only auto-scroll when outside the viewport (even if only partially). Can be overriden with `scrollWhenVisible: true`. (#714)

app/defines.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace UserFrosting;
44

55
// Some standard defines
6-
define('UserFrosting\VERSION', '4.0.22-alpha');
6+
define('UserFrosting\VERSION', '4.0.23-alpha');
77
define('UserFrosting\DS', '/');
88
define('UserFrosting\PHP_MIN_VERSION', '5.6');
99
define('UserFrosting\DEBUG_CONFIG', false);

app/sprinkles/core/assets/local/core/js/uf-collection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@
245245
this.$element.trigger('rowTouch.ufCollection', row);
246246

247247
// If we're not using dropdowns, assert that the table doesn't already have a virgin row. If not, create a new virgin row.
248-
if (this.settings.useDropdown) {
248+
if (!this.settings.useDropdown) {
249249
var virginRows = this.settings.rowContainer.find('.uf-collection-row-virgin').length;
250250
if (!virginRows) {
251251
this._createVirginRow();

0 commit comments

Comments
 (0)