diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/lib/grid/js/Grid.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/lib/grid/js/Grid.js
index 348fdebfba4ec069957f41bd0b40213b19fcec82..7dc0026878da75a16090c4a851c3692d1aba731e 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/lib/grid/js/Grid.js
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/lib/grid/js/Grid.js
@@ -634,8 +634,9 @@ $.extend(Grid.prototype, {
 				 //HACK: Fixes extra headers added on this fuelux 3.1.0 when rendering again
 				var tableHeads = $(thisGrid.panel).find('thead');
 				if(tableHeads.length > 1) {
-					for(var hIdx = 0; hIdx < tableHeads.length - 1; hIdx++) {
-						$(tableHeads[hIdx]).remove();
+					for(var hIdx = 1; hIdx < tableHeads.length; hIdx++) {
+						var bugHeader = $(tableHeads[hIdx]);
+						bugHeader.remove();
 					}
 				}
 				//HACK:	Legacy Hacks no longer needed