diff --git a/js/sql.js b/js/sql.js index e985be21c..e61214ef9 100644 --- a/js/sql.js +++ b/js/sql.js @@ -110,7 +110,13 @@ function appendInlineAnchor() { if($(this).attr('colspan') == 3) { $(this).attr('colspan', '4') } - }) + }); + + $('#rowsDeleteForm').find('tbody').find('th').each(function() { + if($(this).attr('colspan') == 3) { + $(this).attr('colspan', '4') + } + }); } }