Skip to content
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

Merged
merged 3 commits into from
May 13, 2024

Conversation

janmichek
Copy link
Collaborator

Description

resolves #752

Demo

displays as expected

firefox_woZuSncJbe.mp4

Checklist:

@janmichek janmichek changed the title Sanitize unhandled version values fix: Sanitize unhandled version values May 6, 2024
Copy link

github-actions bot commented May 6, 2024

Copy link
Collaborator

@Liubov-crypto Liubov-crypto left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a question: why I can't see Listed Tokens? (the same on prod)

tok

@@ -52,14 +52,14 @@
class="footer__version">
NODE VERSION
<app-link :to="NODE_RELEASES_URL">
v{{ nodeStatus.nodeVersion }}
v{{ nodeStatus?.nodeVersion }}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

</app-link>
</div>
<div
class="footer__version">
MIDDLEWARE VERSION
<app-link :to="MDW_RELEASES_URL">
v{{ middlewareStatus.mdwVersion }}
v{{ middlewareStatus?.mdwVersion }}
Copy link
Collaborator

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".

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed

@michele-franchi
Copy link
Collaborator

michele-franchi commented May 13, 2024

I have a question: why I can't see Listed Tokens? (the same on prod)

tok

@Liubov-crypto, asked @mmpetarpeshev to have a look at it, it's a DEX issue.

@janmichek
Copy link
Collaborator Author

I have a question: why I can't see Listed Tokens? (the same on prod)

tok

Already created issue to trrack it #765

@janmichek janmichek requested a review from michele-franchi May 13, 2024 08:09
Copy link
Collaborator

@michele-franchi michele-franchi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@janmichek janmichek merged commit 90afed8 into develop May 13, 2024
3 checks passed
@janmichek janmichek deleted the Sanitize-unhandled-version-values branch May 13, 2024 08:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sanitize unhandled version values
3 participants