diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2023-10-21 14:24:05 +0200 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2023-10-21 14:24:05 +0200 |
commit | de4b7e6124254a192c897bdf0070b078a64ee563 (patch) | |
tree | 2517f4e70c56b55515f75b686fd9ea508ef5659c /src/App.vue | |
parent | ecf664d19b2a46c9d89a9a9c1128e22b7228607a (diff) | |
download | homer-de4b7e6124254a192c897bdf0070b078a64ee563.tar.gz homer-de4b7e6124254a192c897bdf0070b078a64ee563.tar.zst homer-de4b7e6124254a192c897bdf0070b078a64ee563.zip |
Linting updatev23.10.1
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue index a329775..e84f083 100644 --- a/src/App.vue +++ b/src/App.vue | |||
@@ -208,7 +208,7 @@ export default { | |||
208 | 208 | ||
209 | if (this.currentPage !== "default") { | 209 | if (this.currentPage !== "default") { |
210 | let pageConfig = await this.getConfig( | 210 | let pageConfig = await this.getConfig( |
211 | `assets/${this.currentPage}.yml` | 211 | `assets/${this.currentPage}.yml`, |
212 | ); | 212 | ); |
213 | config = Object.assign(config, pageConfig); | 213 | config = Object.assign(config, pageConfig); |
214 | } | 214 | } |
@@ -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, {merge: true}); | 248 | return parse(body, { merge: true }); |
249 | }) | 249 | }) |
250 | .then(function (config) { | 250 | .then(function (config) { |
251 | if (config.externalConfig) { | 251 | if (config.externalConfig) { |