Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
This commit is contained in:
Andrey Platov 2021-10-05 16:44:47 +02:00
parent fbd5ef20bd
commit 7aae52d549
No known key found for this signature in database
GPG Key ID: C8787EFEB4B64AF0

View File

@ -79,11 +79,7 @@
sortKey = key
sortOrder = SortingOrder.Ascending
} else {
if (sortOrder == SortingOrder.Ascending) {
sortOrder = SortingOrder.Descending
} else {
sortOrder = SortingOrder.Ascending
}
sortOrder = (sortOrder === SortingOrder.Ascending) ? SortingOrder.Descending : SortingOrder.Ascending
}
}
</script>