In VRS 2.4.0, attempting to sort by MLAT in the website arranges the rows incorrectly. This is because of a bug in the sort handler's getNumberCallback -- when a MLAT value is available, the function is checking truthiness of the isMlat object, rather than its val property. This PR fixes that.
Hi,
In VRS 2.4.0, attempting to sort by MLAT in the website arranges the rows incorrectly. This is because of a bug in the sort handler's
getNumberCallback
-- when a MLAT value is available, the function is checking truthiness of theisMlat
object, rather than itsval
property. This PR fixes that.