fix missing append 'v'

This commit is contained in:
Jeff Carr 2024-02-23 12:47:05 -06:00
parent 28a20e0922
commit 2a62d23482
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ func (rs *RepoStatus) SetVersion(a, b, c string, reason string) {
releaseRevision = c releaseRevision = c
rs.setRevision(c) rs.setRevision(c)
rs.targetReleaseVersion.SetText(a + "." + b + "." + c) rs.targetReleaseVersion.SetText("v" + a + "." + b + "." + c)
rs.versionMessage.SetLabel(reason) rs.versionMessage.SetLabel(reason)
rs.versionMessage.SetText(reason) rs.versionMessage.SetText(reason)