summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-11-21 16:53:23 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-11-22 16:45:27 +0100
commit41457eb4be1055b5bf694b0a27d9a279ee49065f (patch)
tree22d4953856ede6b123c9bd32e6e2706f3a0e6a56 /components
parent76f88cf7ae2688ac3d1b4ff118cfbc78d9555112 (diff)
downloadkube-41457eb4be1055b5bf694b0a27d9a279ee49065f.tar.gz
kube-41457eb4be1055b5bf694b0a27d9a279ee49065f.zip
Show the host not found error dialog on connection error as well.
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/LogView.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/kube/contents/ui/LogView.qml b/components/kube/contents/ui/LogView.qml
index a328ec3e..3b0aa2d5 100644
--- a/components/kube/contents/ui/LogView.qml
+++ b/components/kube/contents/ui/LogView.qml
@@ -174,6 +174,9 @@ Controls.SplitView {
174 if (subtype == Kube.Notifications.hostNotFoundError) { 174 if (subtype == Kube.Notifications.hostNotFoundError) {
175 return hostNotFoundErrorComponent 175 return hostNotFoundErrorComponent
176 } 176 }
177 if (subtype == Kube.Notifications.connectionError) {
178 return hostNotFoundErrorComponent
179 }
177 return detailsComponent 180 return detailsComponent
178 } 181 }
179 182