Fix default value description of sortBy

This commit is contained in:
Philipp 2020-06-27 09:22:23 +02:00 committed by GitHub
parent 275514af22
commit 91d4fe52f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -146,7 +146,7 @@ const paginateConfig: PaginateConfig<CatEntity> {
/**
* Required: false
* Type: [string, 'ASC' | 'DESC'][]
* Default: [sortableColumns[0], 'ASC]]
* Default: [[sortableColumns[0], 'ASC]]
* Description: The order to display the sorted entities.
*/
defaultSortBy: [['name', 'DESC']],