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 authored and chirag-wagento committed Jun 5, 2018
1 parent 1b52d8c commit 7d2d8cc
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 7d2d8cc

Please sign in to comment.