We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10d5fcf commit 02ada08Copy full SHA for 02ada08
src/VirtoCommerce.Platform.Web/wwwroot/js/common/uiGridUtils.js
@@ -59,9 +59,15 @@ angular.module('platformWebApp')
59
60
if (gridApi.saveState) {
61
if (savedState) {
62
- //$timeout(function () {
+
63
+ Object.keys(savedState).forEach(function (key) {
64
+ const value = savedState[key];
65
+ if (_.isEmpty(value)) {
66
+ savedState[key] = undefined;
67
+ }
68
+ });
69
70
gridApi.saveState.restore($scope, savedState);
- //}, 10);
71
}
72
73
if (gridApi.colResizable)
0 commit comments