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/components/services/Portainer.vue | |
parent | ecf664d19b2a46c9d89a9a9c1128e22b7228607a (diff) | |
download | homer-de4b7e6124254a192c897bdf0070b078a64ee563.tar.gz homer-de4b7e6124254a192c897bdf0070b078a64ee563.tar.zst homer-de4b7e6124254a192c897bdf0070b078a64ee563.zip |
Linting updatev23.10.1
Diffstat (limited to 'src/components/services/Portainer.vue')
-rw-r--r-- | src/components/services/Portainer.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/services/Portainer.vue b/src/components/services/Portainer.vue index d101ecc..cfc762e 100644 --- a/src/components/services/Portainer.vue +++ b/src/components/services/Portainer.vue | |||
@@ -78,7 +78,7 @@ export default { | |||
78 | this.endpoints = await this.fetch("/api/endpoints", { headers }).catch( | 78 | this.endpoints = await this.fetch("/api/endpoints", { headers }).catch( |
79 | (e) => { | 79 | (e) => { |
80 | console.error(e); | 80 | console.error(e); |
81 | } | 81 | }, |
82 | ); | 82 | ); |
83 | 83 | ||
84 | let containers = []; | 84 | let containers = []; |
@@ -93,7 +93,7 @@ export default { | |||
93 | const endpointContainers = await this.fetch(uri, { headers }).catch( | 93 | const endpointContainers = await this.fetch(uri, { headers }).catch( |
94 | (e) => { | 94 | (e) => { |
95 | console.error(e); | 95 | console.error(e); |
96 | } | 96 | }, |
97 | ); | 97 | ); |
98 | 98 | ||
99 | if (endpointContainers) { | 99 | if (endpointContainers) { |