Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
David Zwart committed Apr 18, 2024
1 parent d36b189 commit 5a1364b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/components/Settings/SoftwareUpgradeSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -264,12 +264,6 @@ function isUpgradeOrAllowedDowngrade(release: IRelease, current?: IRelease) {
return true;
}
console.log(
release.tag_name,
minimum.value!.tag_name,
compare(release.tag_name, current.tag_name),
compare(release.tag_name, minimum.value!.tag_name)
);
return (
compare(release.tag_name, current.tag_name) !== -1 &&
compare(release.tag_name, minimum.value!.tag_name) !== -1
Expand Down

0 comments on commit 5a1364b

Please sign in to comment.