-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Feature) Select input for Boolean type for contract type acc #229
Conversation
@vbaranov |
Thanks, @dennis00010011b. Fixed here 2f89dfc |
e2e drop down menu for boolean function
if (params.type === 'bool' && isInput) { | ||
field = ( | ||
<SendTransactionInputSelect | ||
key={Math.random()} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this necesssary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, key
prop is not necessary for inputs. Removed, thanks @fvictorio
Based on #219