diff --git a/src/js/core/factories/GridRow.js b/src/js/core/factories/GridRow.js index 3e14e0c80e..579bcef58c 100644 --- a/src/js/core/factories/GridRow.js +++ b/src/js/core/factories/GridRow.js @@ -176,7 +176,7 @@ angular.module('ui.grid') */ GridRow.prototype.clearThisRowInvisible = function ( reason, fromRowsProcessor ) { if (typeof(this.invisibleReason) !== 'undefined' ) { - delete this.invisibleReason.user; + delete this.invisibleReason[reason]; } this.evaluateRowVisibility( fromRowsProcessor ); }; @@ -216,4 +216,4 @@ angular.module('ui.grid') return GridRow; }]); -})(); \ No newline at end of file +})();