aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/Service.vue
diff options
context:
space:
mode:
authorRobin Schneider <45321827+robinschneider@users.noreply.github.com>2021-10-10 21:40:42 +0200
committerGitHub <noreply@github.com>2021-10-10 21:40:42 +0200
commit87aadbb6df26009e93ee20752184300819d833e8 (patch)
tree6c7beb408c6ef7419e42bed9a7df0247533971b3 /src/components/Service.vue
parentb64b17a4f91669713328cecada81482ba97cea38 (diff)
parent66a434e7dba49011dd5401e32bb45ab180a73a11 (diff)
downloadhomer-87aadbb6df26009e93ee20752184300819d833e8.tar.gz
homer-87aadbb6df26009e93ee20752184300819d833e8.tar.zst
homer-87aadbb6df26009e93ee20752184300819d833e8.zip
Merge branch 'bastienwirtz:main' into hotkey
Diffstat (limited to 'src/components/Service.vue')
-rw-r--r--src/components/Service.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Service.vue b/src/components/Service.vue
index 39a9ac4..25b86d5 100644
--- a/src/components/Service.vue
+++ b/src/components/Service.vue
@@ -1,5 +1,5 @@
1<template> 1<template>
2 <component v-bind:is="component" :item="item"></component> 2 <component v-bind:is="component" :item="item" :proxy="proxy"></component>
3</template> 3</template>
4 4
5<script> 5<script>
@@ -9,6 +9,7 @@ export default {
9 name: "Service", 9 name: "Service",
10 props: { 10 props: {
11 item: Object, 11 item: Object,
12 proxy: Object,
12 }, 13 },
13 computed: { 14 computed: {
14 component() { 15 component() {