We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90ea3f1 + abef2e7 commit 5e86f23Copy full SHA for 5e86f23
app/code/Magento/Ui/view/base/web/js/grid/data-storage.js
@@ -188,7 +188,8 @@ define([
188
189
result = {
190
items: this.getByIds(request.ids),
191
- totalRecords: request.totalRecords
+ totalRecords: request.totalRecords,
192
+ errorMessage: request.errorMessage
193
};
194
195
delay ?
@@ -216,7 +217,8 @@ define([
216
217
this._requests.push({
218
ids: this.getIds(data.items),
219
params: params,
- totalRecords: data.totalRecords
220
+ totalRecords: data.totalRecords,
221
+ errorMessage: data.errorMessage
222
});
223
224
return this;
0 commit comments