summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-10-31 14:48:50 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-11-06 11:16:11 +0100
commit1da694bfe5f90320532966393d5fc4df58b565ef (patch)
tree7ed36a1284c93373989758b1665170da92976a18
parentcd602feafc99cd5ebc51096a9f8fbdce9e742849 (diff)
downloadkube-1da694bfe5f90320532966393d5fc4df58b565ef.tar.gz
kube-1da694bfe5f90320532966393d5fc4df58b565ef.zip
Don't get stuck on a subtype
-rw-r--r--components/kube/contents/ui/LogView.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/kube/contents/ui/LogView.qml b/components/kube/contents/ui/LogView.qml
index 75e768d9..a328ec3e 100644
--- a/components/kube/contents/ui/LogView.qml
+++ b/components/kube/contents/ui/LogView.qml
@@ -86,6 +86,8 @@ Controls.SplitView {
86 details.timestamp = error.timestamp 86 details.timestamp = error.timestamp
87 if (!!currentItem.currentData.subtype) { 87 if (!!currentItem.currentData.subtype) {
88 details.subtype = currentItem.currentData.subtype 88 details.subtype = currentItem.currentData.subtype
89 } else {
90 details.subtype = ""
89 } 91 }
90 } 92 }
91 93