Skip to content

Commit 7a0a8f4

Browse files
committed
changelog
1 parent 3c4494e commit 7a0a8f4

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

88
## v4.1.18
9-
- Bakery setup wizard for SMTP config + separate SMTP setup in it's own command (#874)
9+
- Bakery setup wizard for SMTP config + separate SMTP setup in it's own command (https://github.com/userfrosting/UserFrosting/issues/874)
10+
- Update Italian translations (https://github.com/userfrosting/UserFrosting/pull/875)
11+
- Return deleted `row` in `ufCollection` event (https://github.com/userfrosting/UserFrosting/pull/873)
1012

1113
## v4.1.17-alpha
1214
- Lock `gulp-uf-bundle-assets` at v2.28.0 until userfrosting/gulp-uf-bundle-assets#5 is resolved (see #859)

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,10 +237,10 @@
237237
/**
238238
* Delete a row from the collection.
239239
*/
240-
_deleteRow: function(row) {
241-
row.remove();
242-
this.$element.trigger('rowDelete.ufCollection',row);
243-
},
240+
_deleteRow: function(row) {
241+
row.remove();
242+
this.$element.trigger('rowDelete.ufCollection', row);
243+
},
244244
/**
245245
* Add delete and touch bindings for a row, increment the internal row counter, and fire the rowAdd event
246246
*/

0 commit comments

Comments
 (0)