-
Notifications
You must be signed in to change notification settings - Fork 428
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
fix: long token name visible over balance #4121
base: dev
Are you sure you want to change the base?
fix: long token name visible over balance #4121
Conversation
All contributors have signed the CLA ✍️ ✅ |
@@ -29,11 +29,13 @@ export const TransferTx = ({ | |||
omitSign = false, | |||
withLogo = true, | |||
preciseAmount = false, | |||
truncateText = false, |
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.
component is being used in various pages
truncate text is applied specifically to in transaction info component , to avoid unindented UI changes in other pages
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.
Didn't we decide to truncate text everywhere in #4034 (comment)?
I have read the CLA Document and I hereby sign the CLA |
recheck |
What it solves
Resolves #3438
How this PR fixes it
Truncate text for long token names
How to test it
1)Execute a transaction to transfer Erc20 (any) tokens via SafeWallet
2)Edit the token name via html to a long text ( alternatively deploy a token with long name and use it for transfer)
3)Token Name overlaps with other fields
Screenshots
Before :
Desktop :
Mobile :
After :
Desktop :
Mobile :
Checklist