Update PickList.d.ts

The showSourceControls and showTargetControls have a default value of true in the codebase.
pull/4068/head
Tamás H 2023-06-19 13:29:19 +02:00 committed by GitHub
parent d1900b56e6
commit 2faf3252f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -283,12 +283,12 @@ export interface PickListProps {
stripedRows?: boolean | undefined;
/**
* Whether to show buttons of source list.
* @defaultValue false
* @defaultValue true
*/
showSourceControls?: boolean | undefined;
/**
* Whether to show buttons of target list.
* @defaultValue false
* @defaultValue true
*/
showTargetControls?: boolean | undefined;
/**