aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/RecipesStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/RecipesStore.js')
-rw-r--r--src/stores/RecipesStore.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stores/RecipesStore.js b/src/stores/RecipesStore.js
index b49fb72d9..c7c4c1deb 100644
--- a/src/stores/RecipesStore.js
+++ b/src/stores/RecipesStore.js
@@ -54,11 +54,11 @@ export default class RecipesStore extends Store {
54 } 54 }
55 55
56 @computed get recipeIdForServices() { 56 @computed get recipeIdForServices() {
57 return this.stores.services.all.map(s => s.recipe.id); 57 return this.stores.services.all.map((s) => s.recipe.id);
58 } 58 }
59 59
60 one(id) { 60 one(id) {
61 return this.all.find(recipe => recipe.id === id); 61 return this.all.find((recipe) => recipe.id === id);
62 } 62 }
63 63
64 isInstalled(id) { 64 isInstalled(id) {
@@ -78,7 +78,7 @@ export default class RecipesStore extends Store {
78 const recipes = {}; 78 const recipes = {};
79 79
80 // Hackfix, reference this.all to fetch services 80 // Hackfix, reference this.all to fetch services
81 debug(`Check Recipe updates for ${this.all.map(recipe => recipe.id)}`); 81 debug(`Check Recipe updates for ${this.all.map((recipe) => recipe.id)}`);
82 82
83 recipeIds.forEach((r) => { 83 recipeIds.forEach((r) => {
84 const recipe = this.one(r); 84 const recipe = this.one(r);
@@ -98,7 +98,7 @@ export default class RecipesStore extends Store {
98 const version = recipes[recipe]; 98 const version = recipes[recipe];
99 99
100 // Find recipe in local recipe repository 100 // Find recipe in local recipe repository
101 const localRecipe = allJson.find(r => r.id === recipe); 101 const localRecipe = allJson.find((r) => r.id === recipe);
102 102
103 if (localRecipe && semver.lt(version, localRecipe.version)) { 103 if (localRecipe && semver.lt(version, localRecipe.version)) {
104 localUpdates.push(recipe); 104 localUpdates.push(recipe);