uc-cdis / data-portal

Windmill: data portal for metadata submission and query
Apache License 2.0
27 stars 44 forks source link

(MIDRC-153): Fix explorer table header sorting issue #1554

Closed ocshawn closed 2 months ago

ocshawn commented 2 months ago

Link to JIRA ticket if there is one: MIDRC-153

Bug Fixes

paulineribeyre commented 2 months ago

number 0 should not be treated as empty, and empty numbers are not of type "number"

var test = null;
typeof test
"object"

var test = undefined;
typeof test
"undefined"

var test = 0;
typeof test
"number"