FIX: A syntax error

This commit is contained in:
Jarek Radosz 2023-01-15 21:41:03 +01:00
parent f3ee36be60
commit 163cf8b525
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ const Repo = EmberObject.extend({
checkingStatus: or("unloaded", "checking"),
upToDate: computed("upgrading", "version", "latest.version", function () {
return (
!this.get("upgrading") &
!this.get("upgrading") &&
(this.get("version") === this.get("latest.version"))
);
}),