fix dataTables ordering when I dont expect it to for books on shelf view

This commit is contained in:
2023-07-01 15:11:00 +10:00
parent 6a43cd23d1
commit d4d37b96e3
2 changed files with 11 additions and 6 deletions

View File

@@ -149,7 +149,7 @@
{% if 'Author(s)' in order_by %}
{% set o = "'order': [[ 1, 'asc' ]]," %}
{% else %}
{% set o = "" %}
{% set o = "'order': '', " %}
{% endif %}
document.bookdb_dt = $('#book_table').DataTable( { 'pageLength': 20, {{o|safe}} 'lengthMenu': [[10, 20, 50, -1], [10, 20, 50, "All"]] } );
} );