-
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
fix: Sanitize unhandled version values #753
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.
src/components/TheFooter.vue
Outdated
@@ -52,14 +52,14 @@ | |||
class="footer__version"> | |||
NODE VERSION | |||
<app-link :to="NODE_RELEASES_URL"> | |||
v{{ nodeStatus.nodeVersion }} | |||
v{{ nodeStatus?.nodeVersion }} |
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.
v{{ nodeStatus?.nodeVersion }} | |
{{ formatNullable(nodeStatus.nodeVersion) }} |
Might be an opportunity to get rid of the extra "v" and also make it use formatNullable
for this specific case?
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.
fixed
src/components/TheFooter.vue
Outdated
</app-link> | ||
</div> | ||
<div | ||
class="footer__version"> | ||
MIDDLEWARE VERSION | ||
<app-link :to="MDW_RELEASES_URL"> | ||
v{{ middlewareStatus.mdwVersion }} | ||
v{{ middlewareStatus?.mdwVersion }} |
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 as suggested above, "v" should be removed also for "ÆSCAN VERSION".
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.
removed
@Liubov-crypto, asked @mmpetarpeshev to have a look at it, it's a DEX issue. |
Already created issue to trrack it #765 |
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 #752
Demo
displays as expected
firefox_woZuSncJbe.mp4
Checklist: