Skip to content

Commit

Permalink
fix(ui): downgrades show empty changelogs
Browse files Browse the repository at this point in the history
Fixes #3663
  • Loading branch information
robertsLando committed Apr 10, 2024
1 parent 6a8619c commit ee50c0e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1413,6 +1413,9 @@ export default {
'<a target="_blank" href="',
)
// downgrades could create empty changelogs
if (!changelog.trim()) return
// means we never saw the changelog for this version
const result = await this.confirm(
`Changelog`,
Expand Down

0 comments on commit ee50c0e

Please sign in to comment.