diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/kube/contents/ui/LogView.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/kube/contents/ui/LogView.qml b/components/kube/contents/ui/LogView.qml index 7841a4b3..4a4befd1 100644 --- a/components/kube/contents/ui/LogView.qml +++ b/components/kube/contents/ui/LogView.qml | |||
@@ -56,7 +56,9 @@ Controls.SplitView { | |||
56 | } | 56 | } |
57 | 57 | ||
58 | onCurrentItemChanged: { | 58 | onCurrentItemChanged: { |
59 | details.resourceId = currentItem.currentData.resource | 59 | if (!!currentItem.currentData.resource) { |
60 | details.resourceId = currentItem.currentData.resource | ||
61 | } | ||
60 | details.message = currentItem.currentData.message + "\n" + currentItem.currentData.details | 62 | details.message = currentItem.currentData.message + "\n" + currentItem.currentData.details |
61 | details.timestamp = currentItem.currentData.timestamp | 63 | details.timestamp = currentItem.currentData.timestamp |
62 | } | 64 | } |