-
Notifications
You must be signed in to change notification settings - Fork 952
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
udapp fixes #3895
udapp fixes #3895
Conversation
LianaHus
commented
Jul 5, 2023
•
edited
Loading
edited
- fixing badges for fork alert
- fixing paddings in function buttons
- btns are now disabled if input is required but not filled
- some small refactoring and fixes in some themes
- CSS style classes -> bootstrap
- coding style fixes
✅ Deploy Preview for remixproject ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
} | ||
props.loadAddress(loadedContractData, address) | ||
} catch(e) { | ||
console.log("Invalid Address input: ", e) |
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.
remove log
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? We should improve UI error feedback. For now I would keep this.
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.
ok 👍
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.
- Not sure if
No compiled contracts
can be more visible. Also in tooltip text,AtAddress'
can be replace withAt Address
At address
button looks enabled even if no address is provided- About the badges, I think we decided to remove
compiled by Remix
for non-remixd connection - Disabling the method name on no input parameters can be confusing for some users, can we have a tooltip when method button is disabled
done
done
done
we had. I'll check what's broken there |
@@ -26,7 +26,7 @@ | |||
"udapp.contractOptionsTitle1": "Please compile *.sol file to deploy or access a contract", | |||
"udapp.contractOptionsTitle2": "Select a compiled contract to deploy or to use with At Address.", | |||
"udapp.contractOptionsTitle3": "Select and compile *.sol file to deploy or access a contract.", | |||
"udapp.contractOptionsTitle4": "When there is a compiled .sol file, choose the contract to deploy or to use with AtAddress.'", | |||
"udapp.contractOptionsTitle4": "When there is a compiled .sol file, choose the contract to deploy or to use with At Address.'", |
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.
I think '
from the end can still be removed
@@ -25,7 +25,7 @@ | |||
"udapp.contractOptionsTitle1": "Please compile *.sol file to deploy or access a contract", | |||
"udapp.contractOptionsTitle2": "Select a compiled contract to deploy or to use with At Address.", | |||
"udapp.contractOptionsTitle3": "Select and compile *.sol file to deploy or access a contract.", | |||
"udapp.contractOptionsTitle4": "When there is a compiled .sol file, choose the contract to deploy or to use with AtAddress.'", | |||
"udapp.contractOptionsTitle4": "When there is a compiled .sol file, choose the contract to deploy or to use with At Address.'", |
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.
same here
@@ -25,7 +25,7 @@ | |||
"udapp.contractOptionsTitle1": "Please compile *.sol file to deploy or access a contract", | |||
"udapp.contractOptionsTitle2": "Select a compiled contract to deploy or to use with At Address.", | |||
"udapp.contractOptionsTitle3": "Select and compile *.sol file to deploy or access a contract.", | |||
"udapp.contractOptionsTitle4": "When there is a compiled .sol file, choose the contract to deploy or to use with AtAddress.'", | |||
"udapp.contractOptionsTitle4": "When there is a compiled .sol file, choose the contract to deploy or to use with At Address.'", |
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.
and here
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.
If I provide an invalid type value for constructor params, deploy button is enabled. When I click on |
same on live. will fix it in second pr |
fixed by #3912 |