diff options
author | Robin Schneider <45321827+robinschneider@users.noreply.github.com> | 2021-10-10 21:41:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 21:41:23 +0200 |
commit | 7a4e78e8d0448541e76f6052c45f00b30cdf60e1 (patch) | |
tree | 77be480ad42c3e1a64005a1974206dc249273bbb /src/App.vue | |
parent | 3faeac7e9fc3601283c58e2d585e00f346250e10 (diff) | |
parent | 66a434e7dba49011dd5401e32bb45ab180a73a11 (diff) | |
download | homer-7a4e78e8d0448541e76f6052c45f00b30cdf60e1.tar.gz homer-7a4e78e8d0448541e76f6052c45f00b30cdf60e1.tar.zst homer-7a4e78e8d0448541e76f6052c45f00b30cdf60e1.zip |
Merge branch 'bastienwirtz:main' into icon-color
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 1f4f509..c263c8a 100644 --- a/src/App.vue +++ b/src/App.vue | |||
@@ -74,7 +74,8 @@ | |||
74 | <Service | 74 | <Service |
75 | v-for="(item, index) in group.items" | 75 | v-for="(item, index) in group.items" |
76 | :key="index" | 76 | :key="index" |
77 | v-bind:item="item" | 77 | :item="item" |
78 | :proxy="config.proxy" | ||
78 | :class="['column', `is-${12 / config.columns}`]" | 79 | :class="['column', `is-${12 / config.columns}`]" |
79 | /> | 80 | /> |
80 | </template> | 81 | </template> |
@@ -102,7 +103,8 @@ | |||
102 | <Service | 103 | <Service |
103 | v-for="(item, index) in group.items" | 104 | v-for="(item, index) in group.items" |
104 | :key="index" | 105 | :key="index" |
105 | v-bind:item="item" | 106 | :item="item" |
107 | :proxy="config.proxy" | ||
106 | /> | 108 | /> |
107 | </div> | 109 | </div> |
108 | </div> | 110 | </div> |