[Bug] UI: version labels show a double 'vv' prefix for v-prefixed versions #55
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Many UI sites hard-coded a
vprefix (v{{ version }},`v${version}`). When the source string already carried av(e.g. image-tag-style app versions likev2.38.0), this rendered asvv2.38.0.Fixed: added
displayVersion()(src/utils/version.ts), exposed globally as$ver, which normalizes to exactly one leadingv. Applied across ~13 sites (SystemUpdate, Fleet, Dashboard sidebar, Discover, app cards/details, marketplace).vue-tscpasses.