Skip to content

Commit

Permalink
Fix #739.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweissman committed Jun 18, 2017
1 parent 4854b45 commit 9929b03
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Change Log

## v.4.0.22-Alpha
## v4.0.23-Alpha

- Set module dependency versions to ~4.0.0 instead of ^4.0.0 (since 4.1.x will introduce breaking changes)
- Fix bug in ufCollection

## v4.0.22-Alpha
- Fix issue where 'Change User Password' popup form couldn't handle specifying a new password.
- Display message when there are no results in `ufTable`

## v.4.0.21-Alpha
## v4.0.21-Alpha
- Implement reflow and column selector for tables (#670)
- Overhauled ufAlerts, improving efficiency, reliability, and fixed a discovered edge case that caused `render` to never complete. (part of #646)
- ufAlerts will only auto-scroll when outside the viewport (even if only partially). Can be overriden with `scrollWhenVisible: true`. (#714)
Expand Down
2 changes: 1 addition & 1 deletion app/defines.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace UserFrosting;

// Some standard defines
define('UserFrosting\VERSION', '4.0.22-alpha');
define('UserFrosting\VERSION', '4.0.23-alpha');
define('UserFrosting\DS', '/');
define('UserFrosting\PHP_MIN_VERSION', '5.6');
define('UserFrosting\DEBUG_CONFIG', false);
Expand Down
2 changes: 1 addition & 1 deletion app/sprinkles/core/assets/local/core/js/uf-collection.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
this.$element.trigger('rowTouch.ufCollection', row);

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

0 comments on commit 9929b03

Please sign in to comment.