diff --git a/CHANGELOG.md b/CHANGELOG.md index 12fc5c879..2e671ee17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG for husky -* 0.21.1 (2016-07-11) +* 0.21.1 (2016-07-14) * HOTFIX #688 fixed child order in datagrid * HOTFIX #670 workaround for ie dorpdown issue * HOTFIX #679 Globalize: Fixed loading correct file when culture name includes country diff --git a/dist/husky.js b/dist/husky.js index bd81c0a55..f6d235f5a 100644 --- a/dist/husky.js +++ b/dist/husky.js @@ -30991,8 +30991,10 @@ define('husky_components/datagrid/decorators/table-view',[],function() { } // insert the row after the last child element of the parent, or directly after the parent // if no such child exists - this.sandbox.dom.after(this.getLastChildElementOfParent($parentElement) || $parentElement, - this.table.rows[record.id].$el); + this.sandbox.dom.after( + this.getLastChildElementOfParent($parentElement) || $parentElement, + this.table.rows[record.id].$el + ); } else { insertMethod(this.table.$body, this.table.rows[record.id].$el); }