Hi, I'm encountering an issue where the "Your Equipment" table incorrectly sorts the average pace column (I believe the same thing would happen for max pace as well). I spent some time debugging it in the developer console and it looks like this occurs when the first row of the table has a pace greater than 10 minutes per unit distance (i.e. 10:00/mi).
The timeTest regex registers these values with a time parser rather than a text parser:
^(0?[1-9]|1[0-2]):([0-5]\d)(\s[AP]M)$|^((?:[01]\d|[2][0-4]):[0-5]\d)$
If I do a search in the table such that the first row in the table is <= 9:59 then the regex no longer matches and the column sorts correctly.