diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-23 17:01:00 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-23 17:01:00 +0200 |
commit | ea3c4eda77a02cf15779635a0c80e49077053e32 (patch) | |
tree | 65099e199656b763aed361bdcb314e67dc20255e /components | |
parent | a0a371214f8fe11dc71efdf1c804185f65964aca (diff) | |
download | kube-ea3c4eda77a02cf15779635a0c80e49077053e32.tar.gz kube-ea3c4eda77a02cf15779635a0c80e49077053e32.zip |
Avoid warnings for undefined
Diffstat (limited to 'components')
-rw-r--r-- | components/kube/contents/ui/LogView.qml | 4 |
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 { |