Skip to content

Commit

Permalink
Fix for issue 911 found on MSI project - Cannot read property source_…
Browse files Browse the repository at this point in the history
…code of undefined

Dynamic data rows were failing due to a read after delete condition
Rows were removed just before the information update. An undefined javascript error was triggered.
  • Loading branch information
phoenix128 committed Apr 22, 2018
1 parent 169b3eb commit c174682
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,8 @@ define([
* @param {String|Number} recordId
*/
deleteRecord: function (index, recordId) {
this._super();

this.updateInsertData(recordId);
this._super();
},

/**
Expand Down

0 comments on commit c174682

Please sign in to comment.