Fixes flow table ordering (#8379)

This commit is contained in:
Matteo Biscosi 2024-05-05 05:04:07 -04:00
parent 014726918a
commit 9760ab7bc4

View file

@ -67,9 +67,9 @@ if not isEmptyString(_GET["sort"]) then
flows_filter.sortColumn = mapping_column_lua_c[_GET["sort"]]
local order = _GET["order"]
if order == "asc" then
flows_filter.a2zSortOrder = false
else
flows_filter.a2zSortOrder = true
else
flows_filter.a2zSortOrder = false
end
end