Update empty state of Dropdown component (#339)

This commit is contained in:
akash-codemonk 2020-08-18 14:12:46 +05:30 committed by GitHub
parent bb369e6bdf
commit 52b48b0c34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,7 +271,7 @@ class DropDownComponent extends React.Component<DropDownComponentProps> {
this.props.selectedIndex !== undefined &&
this.props.selectedIndex > -1
? this.props.options[this.props.selectedIndex].label
: "-- Empty --"
: "-- Select --"
}
/>
</StyledSingleDropDown>