aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJenswBE <6514515+JenswBE@users.noreply.github.com>2023-10-15 12:04:42 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2023-10-16 12:54:40 -0700
commitf160caecfaafb53404a06dd528cd21df65e49b82 (patch)
treefd6877bff605687e29f6d3a45ed58e6e0aa58b79
parent504efe01cbfd82d8baf8dc6b8ac0bdccca9776a9 (diff)
downloadhomer-f160caecfaafb53404a06dd528cd21df65e49b82.tar.gz
homer-f160caecfaafb53404a06dd528cd21df65e49b82.tar.zst
homer-f160caecfaafb53404a06dd528cd21df65e49b82.zip
Fix YAML anchors
Fixes https://github.com/bastienwirtz/homer/issues/559 Based on https://eemeli.org/yaml/#schema-options
-rw-r--r--src/App.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index 25e943f..16e814b 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -245,7 +245,7 @@ export default {
245 return response 245 return response
246 .text() 246 .text()
247 .then((body) => { 247 .then((body) => {
248 return parse(body); 248 return parse(body, {merge: true});
249 }) 249 })
250 .then(function (config) { 250 .then(function (config) {
251 if (config.externalConfig) { 251 if (config.externalConfig) {