aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/Service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/Service.ts')
-rw-r--r--src/models/Service.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/models/Service.ts b/src/models/Service.ts
index 525661172..a61df5570 100644
--- a/src/models/Service.ts
+++ b/src/models/Service.ts
@@ -377,6 +377,10 @@ export default class Service {
377 return this.iconUrl; 377 return this.iconUrl;
378 } 378 }
379 379
380 if (this.recipe.defaultIcon) {
381 return this.recipe.defaultIcon;
382 }
383
380 return join(this.recipe.path, 'icon.svg'); 384 return join(this.recipe.path, 'icon.svg');
381 } 385 }
382 386