From 34d96fa26230dd62c1a77ebe5f92e10a6561ce02 Mon Sep 17 00:00:00 2001 From: Assaf Gelber Date: Wed, 25 Sep 2019 01:40:12 -0700 Subject: [PATCH] Fix documentation on options property in Select Summary: Just updating the apparently copy-pasted comment about the `options` prop. Reviewed By: passy Differential Revision: D17567256 fbshipit-source-id: ed4ff93ad42ef8bdcadb5371fe11ae90dba47ca3 --- src/ui/components/Select.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/components/Select.tsx b/src/ui/components/Select.tsx index c14002528..ef38eed2d 100644 --- a/src/ui/components/Select.tsx +++ b/src/ui/components/Select.tsx @@ -30,7 +30,7 @@ const SelectMenu = styled('select')((props: {grow?: boolean}) => ({ export default class Select extends Component<{ /** Additional className added to the element */ className?: string; - /** Additional className added to the element */ + /** The list of options to display */ options: { [key: string]: string; };