From 46e09a34602b99ef1f396452b99790f173a383d9 Mon Sep 17 00:00:00 2001 From: Chris Lewis Date: Wed, 27 Feb 2019 10:52:14 -0800 Subject: [PATCH] Respond to @adahiya CR --- packages/select/src/common/listItemsProps.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/select/src/common/listItemsProps.ts b/packages/select/src/common/listItemsProps.ts index 06b460f1820..555ebe75801 100644 --- a/packages/select/src/common/listItemsProps.ts +++ b/packages/select/src/common/listItemsProps.ts @@ -115,10 +115,11 @@ export interface IListItemsProps extends IProps { * * If the "Create Item" option is displayed and currently active, then * `isCreateNewItem` will be `true` and `activeItem` will be `null`. In this - * case, you should provide a valid "Create Item" object to the `activeItem` - * _prop_ in order for the "Create Item" option to appear as active. + * case, you should provide a valid `ICreateNewItem` object to the + * `activeItem` _prop_ in order for the "Create Item" option to appear as + * active. * - * __Note:__ You can instantiate a "Create Item" object using the + * __Note:__ You can instantiate a `ICreateNewItem` object using the * `getCreateNewItem()` utility exported from this package. */ onActiveItemChange?: (activeItem: T | null, isCreateNewItem: boolean) => void;