TanStackOSS
    table
    fix(table-core): fix filterFn_between/betweenInclusive autoRemove never removing array filter values filterFn_between and filterFn_betweenInclusive had `autoRemove: (val: any) => !val`. Since any array is truthy in JavaScript, `!val` is always `false` for the `[min, max]` tuple these filters receive, meaning the filter is NEVER auto-removed — even when both endpoints are empty strings, null, or undefined. A user who clears both range inputs ends up with an active filter that passes all rows but can never be auto-removed from column filter state. Fix: align with the same pattern used by filterFn_inNumberRange: autoRemove: (val) => testFalsy(val) || (testFalsy(val[0]) && testFalsy(val[1])) This correctly removes the filter when both endpoints are falsy (undefined, null, or empty string) while preserving 0 as a valid endpoint value. Fixes: filterFns.between and filterFns.betweenInclusive auto-remove logic
    nx affected --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build --parallel=3
Succeeded
CI Pipeline Execution

nx affected --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build --parallel=3

Click to copy
read access token used
de28d1376332
3%

Cache hits

15 of 450 tasks used cache.

93%

Distribution saved time

3m 16s instead of 44m 46s.

Atomizer enabled

256 groups of tasks optimized.

© 2026 - Nx Cloud

Terms of ServicePrivacy PolicyChangelogStatusDocsContact Nx CloudPricingCompany@NxDevTools