Skip to content
Snippets Groups Projects
Commit c8048e97 authored by Pierre-Jean CHANCELLIER's avatar Pierre-Jean CHANCELLIER
Browse files

invert arrows for certifLists

parent 424b92a9
No related branches found
No related tags found
No related merge requests found
......@@ -29,12 +29,12 @@
{{ $t('membres') }}
<div class="d-inline-block position-absolute ml-2">
<div class="up" :class="{
'sorted' : currentSortDir == 'asc' && currentSort == 'uid',
'invisible' : currentSortDir == 'desc' && currentSort == 'uid'
}">▲</div>
<div class="down" :class="{
'sorted' : currentSortDir == 'desc' && currentSort == 'uid',
'invisible' : currentSortDir == 'asc' && currentSort == 'uid'
}">▲</div>
<div class="down" :class="{
'sorted' : currentSortDir == 'asc' && currentSort == 'uid',
'invisible' : currentSortDir == 'desc' && currentSort == 'uid'
}">▼</div>
</div>
</th>
......@@ -42,12 +42,12 @@
{{ $t('expire') }}
<div class="d-inline-block position-absolute ml-2">
<div class="up" :class="{
'sorted' : currentSortDir == 'asc' && currentSort == 'expires_on',
'invisible' : currentSortDir == 'desc' && currentSort == 'expires_on'
}">▲</div>
<div class="down" :class="{
'sorted' : currentSortDir == 'desc' && currentSort == 'expires_on',
'invisible' : currentSortDir == 'asc' && currentSort == 'expires_on'
}">▲</div>
<div class="down" :class="{
'sorted' : currentSortDir == 'asc' && currentSort == 'expires_on',
'invisible' : currentSortDir == 'desc' && currentSort == 'expires_on'
}">▼</div>
</div>
</th>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment