-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: Ae coin details #827
Conversation
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 it's worth to check if text is placed in green filed when copy it:
https://github.com/aeternity/aescan/assets/69896204/9f2a4278-1c3c-4adc-b270-097bed6d0ca1
Also for short names of tokens (the same on prod) and aligning is different from prod:
https://github.com/aeternity/aescan/assets/69896204/92198165-f7fe-4bc5-9246-7725fa223800
Fixed
The layout is good. That's the thing we changed lately |
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.
LGTM
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 suggested some minor changes.
src/components/AeCoinPanel.vue
Outdated
fetchMarketStats(), | ||
])) | ||
|
||
const priceChangeSign = computed(() => priceChange.value > 0 ? '+' : '') |
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.
const priceChangeSign = computed(() => priceChange.value > 0 ? '+' : '') | |
const priceChangeSign = computed(() => priceChange.value > 0 ? '+' : '') |
Shouldn't it be:
> 0: '+'
=0: ''
<0: '-'
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.
right, fixed
Co-authored-by: Michele F. <michele-franchi@users.noreply.github.com>
Co-authored-by: Michele F. <michele-franchi@users.noreply.github.com>
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.
LGTM
Description
resolves #749
Demo
firefox_5N0gx7UBRu.mp4
Checklist: