Skip to content

Commit

Permalink
fix: Fixed update manager (display only new versions)
Browse files Browse the repository at this point in the history
  • Loading branch information
pixkk committed Oct 2, 2024
1 parent 5217c0c commit c7364bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NUXT/pages/mods/updates.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<div>
{{ lang.installed }}:
{{ installedVersion.substring(0, 7) || "Unknown" }}
({{ installedChannel }})
{{ installedChannel.toLowerCase() === "unstable" ? "(unstable)" : "" }}
</div>
<div>{{ lang.latest }}: {{ latestVersion.tag_name }}</div>

Expand Down

0 comments on commit c7364bc

Please sign in to comment.