Skip to content

Commit

Permalink
fix: Sanitize unhandled version values (#753)
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek authored May 13, 2024
1 parent 0d017ed commit 90afed8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/TheFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,21 @@
class="footer__version">
ÆSCAN VERSION
<app-link :to="APP_RELEASES_URL">
v{{ APP_VERSION }}
{{ APP_VERSION }}
</app-link>
</div>
<div
class="footer__version">
NODE VERSION
<app-link :to="NODE_RELEASES_URL">
v{{ nodeStatus?.nodeVersion }}
{{ formatNullable(nodeStatus?.nodeVersion) }}
</app-link>
</div>
<div
class="footer__version">
MIDDLEWARE VERSION
<app-link :to="MDW_RELEASES_URL">
v{{ middlewareStatus?.mdwVersion }}
{{ formatNullable(middlewareStatus?.mdwVersion) }}
</app-link>
<span
v-if="isSyncing"
Expand Down

0 comments on commit 90afed8

Please sign in to comment.