summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/LogView.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/kube/contents/ui/LogView.qml b/components/kube/contents/ui/LogView.qml
index 918597df..b278c2e9 100644
--- a/components/kube/contents/ui/LogView.qml
+++ b/components/kube/contents/ui/LogView.qml
@@ -122,8 +122,8 @@ Controls.SplitView {
122 property date timestamp 122 property date timestamp
123 property string message 123 property string message
124 property string resourceId: "" 124 property string resourceId: ""
125 property string accountId: retriever.currentData.accountId 125 property string accountId: retriever.currentData ? retriever.currentData.accountId : ""
126 property string accountName: retriever.currentData.name 126 property string accountName: retriever.currentData ? retriever.currentData.name : ""
127 color: Kube.Colors.backgroundColor 127 color: Kube.Colors.backgroundColor
128 128
129 Kube.ModelIndexRetriever { 129 Kube.ModelIndexRetriever {