diff options
author | Evan Steinkerchner <esteinkerchner@gmail.com> | 2022-03-19 12:58:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-19 12:58:34 -0400 |
commit | 6351bf973c898bb6a7295be2a0e43fd3e745a14c (patch) | |
tree | 01217ac854243a90a1348b289ae1d6cc6fbf1ad5 /src | |
parent | 049610bc9178a57732356801e20488cf669eda5e (diff) | |
parent | 4e953d7c81f98bb36ffd8a025eab16de66d02acf (diff) | |
download | homer-6351bf973c898bb6a7295be2a0e43fd3e745a14c.tar.gz homer-6351bf973c898bb6a7295be2a0e43fd3e745a14c.tar.zst homer-6351bf973c898bb6a7295be2a0e43fd3e745a14c.zip |
Merge pull request #401 from Zareix/fix/portainer-service
Portainer service - Fix for down endpoints
Diffstat (limited to 'src')
-rw-r--r-- | src/components/services/Portainer.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/services/Portainer.vue b/src/components/services/Portainer.vue index c7e9962..5f3954f 100644 --- a/src/components/services/Portainer.vue +++ b/src/components/services/Portainer.vue | |||
@@ -90,7 +90,9 @@ export default { | |||
90 | } | 90 | } |
91 | ); | 91 | ); |
92 | 92 | ||
93 | containers = containers.concat(endpointContainers); | 93 | if (endpointContainers) { |
94 | containers = containers.concat(endpointContainers); | ||
95 | } | ||
94 | } | 96 | } |
95 | 97 | ||
96 | this.containers = containers; | 98 | this.containers = containers; |