Skip to content

Commit 0fffe9e

Browse files
committed
apply hotfix from 4.0.23
2 parents f1ac612 + 9929b03 commit 0fffe9e

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,15 @@
3535

3636
See [http://learn.userfrosting.com/upgrading/40-to-41](Upgrading 4.0.x to 4.1.x documentation) for complete list of changes and breaking changes.
3737

38-
## v.4.0.22-Alpha
38+
## v4.0.23-Alpha
39+
- Set module dependency versions to ~4.0.0 instead of ^4.0.0 (since 4.1.x will introduce breaking changes)
40+
- Fix bug in ufCollection
41+
42+
## v4.0.22-Alpha
3943
- Fix issue where 'Change User Password' popup form couldn't handle specifying a new password.
4044
- Display message when there are no results in `ufTable`
4145

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

app/sprinkles/core/assets/userfrosting/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)