mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-08-02 23:13:12 +00:00
Fix sorting for active transport map
This commit is contained in:
parent
99739eada0
commit
236d627fbd
1 changed files with 2 additions and 2 deletions
|
|
@ -492,8 +492,8 @@ jQuery(function($){
|
|||
data: 'active',
|
||||
defaultContent: '',
|
||||
render: function (data, type) {
|
||||
if(data == 1) return '<i class="bi bi-check-lg"></i>';
|
||||
else return '<i class="bi bi-x-lg"></i>';
|
||||
if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
|
||||
else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue