diff --git a/wcs/qommon/static/js/biglist.js b/wcs/qommon/static/js/biglist.js index 948be082a..b382f2240 100644 --- a/wcs/qommon/static/js/biglist.js +++ b/wcs/qommon/static/js/biglist.js @@ -14,7 +14,7 @@ $(document).ready( for (i=0; i < items.length; i++) { item = items[i]; // 6 is length of 'itemId' - result += item.id.substr(7, 9) + ';'; + result += item.id.substr(7, 30) + ';'; } $.post('update_order', {'order': result}, function(data) { $('ul.biglist').Highlight(500, '#ff8'); });