Commit 7f9c27fb authored by Muhammadali's avatar Muhammadali

update

parent 176ccdd0
{ {
"name": "boxdialer", "name": "boxdialer",
"version": "1.4.1", "version": "1.4.2",
"description": "", "description": "",
"main": "src/boxDialer.js", "main": "src/boxDialer.js",
"scripts": { "scripts": {
......
...@@ -13,7 +13,7 @@ const DropDown = ({ reasons, reason, selectFunc }) => { ...@@ -13,7 +13,7 @@ const DropDown = ({ reasons, reason, selectFunc }) => {
<DropDownStyle.Text>{reason}</DropDownStyle.Text> <DropDownStyle.Text>{reason}</DropDownStyle.Text>
<DropDownStyle.DropDown visiblevalue={visible} className={'nocopy'}> <DropDownStyle.DropDown visiblevalue={visible} className={'nocopy'}>
{reasons.map((value, index) => ( {reasons.map((value, index) => (
<div className='select' key={index} onClick={selectFunc}> <div className='select' key={index} onClick={() => selectFunc(value)}>
{value} {value}
</div> </div>
))} ))}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment