Skip to content

Commit e92441b

Browse files
committed
Fix sorter-false
- Legacy-Id: 19594
1 parent 6b15c3d commit e92441b

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

ietf/static/js/datatables.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ require('datatables.net-bs5')(window, $);
55
$.extend($.fn.dataTable.defaults, {
66
info : false,
77
paging : false,
8+
order: [],
89
"search": {
910
"caseInsensitive": true
1011
}

ietf/templates/doc/search/search_results.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<table class="table table-sm table-striped {% if not meta.max %}tablesorter{% endif %}">
2121
<thead>
2222
<tr>
23-
<th class="sorter-false"></th>
23+
<th data-orderable="false"></th>
2424

2525
{% for h in meta.headers %}
2626
{% if h.title != "Title" %}
@@ -43,7 +43,7 @@
4343
{% endfor %}
4444

4545
{% if color_row_positions %}
46-
<th class="sorter-false"></th>
46+
<th data-orderable="false"></th>
4747
{% endif %}
4848
</tr>
4949
</thead>

ietf/templates/iesg/agenda_documents.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ <h2>IESG telechat {{t.date}}
5858
<table class="table table-sm table-striped tablesorter">
5959
<thead>
6060
<tr>
61-
<th class="sorter-false"></th>
61+
<th data-orderable="false"></th>
6262
<th>Document</th>
6363
<th>Date</th>
6464
<th>Status</th>

ietf/templates/submit/approvals.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h2 class="anchor-target" id="preapprovals">Pre-approved drafts not yet submitte
5151
<th>Draft name</th>
5252
<th>Pre-approved</th>
5353
<th>By</th>
54-
<th class="sorter-false"></th>
54+
<th data-orderable="false"></th>
5555
</tr>
5656
</thead>
5757
<tbody>

0 commit comments

Comments
 (0)