From 99e740a1e0121a7d24801f61d215de138c0d13bb Mon Sep 17 00:00:00 2001 From: Michael Wan Date: Sat, 13 Apr 2024 12:59:03 +0800 Subject: [PATCH] docs: Remove `nullish` in description of `sortUndefined` (#5485) --- docs/guide/sorting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/sorting.md b/docs/guide/sorting.md index 8e48cc5bad..7dd9bbd025 100644 --- a/docs/guide/sorting.md +++ b/docs/guide/sorting.md @@ -278,9 +278,9 @@ const columns = [ ] ``` -#### Sort Undefined or Nullish Values +#### Sort Undefined Values -Any undefined or nullish values will be sorted to the beginning or end of the list based on the `sortUndefined` column option or table option. You can customize this behavior for your specific use-case. +Any undefined values will be sorted to the beginning or end of the list based on the `sortUndefined` column option or table option. You can customize this behavior for your specific use-case. In not specified, the default value for `sortUndefined` is `1`, and undefined values will be sorted with lower priority (descending), if ascending, undefined will appear on the end of the list.