From 2a38eea1de2806ade5da90a47b7df1e6f646caaa Mon Sep 17 00:00:00 2001 From: Michael Wan Date: Fri, 12 Apr 2024 16:04:08 +0800 Subject: [PATCH] Remove `nullish` in description of `sortUndefined` --- 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 8aea90fecc..1d0151299d 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.