Skip to content

Commit

Permalink
remove table column sort for size, fix #646
Browse files Browse the repository at this point in the history
  • Loading branch information
HaSistrunk committed Nov 26, 2024
1 parent 990cd80 commit be02831
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bag_transfer/templates/orgs/transfers.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
// Set the Name cell content as a clickable link to the transfer detail page
$('td', row).eq(0).html('<a href="' + transferPk + '">' + transferName + '</a>');
},
order: [[{% if request.user.is_archivist %}8{% else %}7{% endif %}, 'desc']],
order: [{% if request.user.is_archivist %}8{% else %}7{% endif %}, 'desc'],
columnDefs: [{ orderable: false, targets: {% if request.user.is_archivist %}7{% else %}6{% endif %} }],
processing: true,
serverSide: true,
fixedHeader: true,
Expand Down

0 comments on commit be02831

Please sign in to comment.