Skip to content

Commit

Permalink
fix datatables filter on bookmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide Arcuri committed Aug 28, 2024
1 parent 1f77aa4 commit e26acd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion orochi/templates/website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ <h5 class="offcanvas-title" id="leftNoteLabel">History Log</h5>

$("#id_selected_indexes").val(selected_indexes);
$("#id_selected_plugin").val(selected_plugin);
$("#id_query").val($("#example_filter input").val());
var table = $('#example').DataTable();
$("#id_query").val(table.search());

let formData = form.serializeArray();
let obj = {};
Expand Down

0 comments on commit e26acd2

Please sign in to comment.