Fixes regression introduced in
62b136a where sorting fails with
"can't access property 'sortValue', val.options is undefined" on
the History tab, and symbol reordering doesn't work on the Scan tab.
The "file" column addition shifted the symbols column index, but
history.js and upload.js were not updated, causing symbol reordering
to target wrong columns.
Issue: #5789
});
libft.set_page_size("history", $("#history_page_size").val());
- libft.bindHistoryTableEventHandlers("history", 8);
+ libft.bindHistoryTableEventHandlers("history", 9);
$("#updateHistory").off("click");
$("#updateHistory").on("click", (e) => {
libft.set_page_size("scan", $("#scan_page_size").val());
- libft.bindHistoryTableEventHandlers("scan", 3);
+ libft.bindHistoryTableEventHandlers("scan", 5);
$("#cleanScanHistory").off("click");
$("#cleanScanHistory").on("click", (e) => {