diff options
author | Robin Schneider <45321827+robinschneider@users.noreply.github.com> | 2021-10-10 21:40:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 21:40:42 +0200 |
commit | 87aadbb6df26009e93ee20752184300819d833e8 (patch) | |
tree | 6c7beb408c6ef7419e42bed9a7df0247533971b3 /src/App.vue | |
parent | b64b17a4f91669713328cecada81482ba97cea38 (diff) | |
parent | 66a434e7dba49011dd5401e32bb45ab180a73a11 (diff) | |
download | homer-87aadbb6df26009e93ee20752184300819d833e8.tar.gz homer-87aadbb6df26009e93ee20752184300819d833e8.tar.zst homer-87aadbb6df26009e93ee20752184300819d833e8.zip |
Merge branch 'bastienwirtz:main' into hotkey
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue index 9b4803f..5e71796 100644 --- a/src/App.vue +++ b/src/App.vue | |||
@@ -75,7 +75,8 @@ | |||
75 | <Service | 75 | <Service |
76 | v-for="(item, index) in group.items" | 76 | v-for="(item, index) in group.items" |
77 | :key="index" | 77 | :key="index" |
78 | v-bind:item="item" | 78 | :item="item" |
79 | :proxy="config.proxy" | ||
79 | :class="['column', `is-${12 / config.columns}`]" | 80 | :class="['column', `is-${12 / config.columns}`]" |
80 | /> | 81 | /> |
81 | </template> | 82 | </template> |
@@ -103,7 +104,8 @@ | |||
103 | <Service | 104 | <Service |
104 | v-for="(item, index) in group.items" | 105 | v-for="(item, index) in group.items" |
105 | :key="index" | 106 | :key="index" |
106 | v-bind:item="item" | 107 | :item="item" |
108 | :proxy="config.proxy" | ||
107 | /> | 109 | /> |
108 | </div> | 110 | </div> |
109 | </div> | 111 | </div> |