Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{ASI} :- Error message to be cached for grid data storage component #26502

6 changes: 4 additions & 2 deletions app/code/Magento/Ui/view/base/web/js/grid/data-storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ define([

result = {
items: this.getByIds(request.ids),
totalRecords: request.totalRecords
totalRecords: request.totalRecords,
errorMessage: request.errorMessage
};

delay ?
Expand Down Expand Up @@ -216,7 +217,8 @@ define([
this._requests.push({
ids: this.getIds(data.items),
params: params,
totalRecords: data.totalRecords
totalRecords: data.totalRecords,
errorMessage: data.errorMessage
});

return this;
Expand Down
Loading