diff options
Diffstat (limited to 'views/log/qml')
-rw-r--r-- | views/log/qml/View.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/views/log/qml/View.qml b/views/log/qml/View.qml index 7e95e20f..9b2ac24a 100644 --- a/views/log/qml/View.qml +++ b/views/log/qml/View.qml | |||
@@ -42,6 +42,10 @@ Controls.SplitView { | |||
42 | Kube.Listener { | 42 | Kube.Listener { |
43 | filter: Kube.Messages.notification | 43 | filter: Kube.Messages.notification |
44 | onMessageReceived: { | 44 | onMessageReceived: { |
45 | //Ignore noise that we can't usefully render anyways | ||
46 | if (!message.message) { | ||
47 | return | ||
48 | } | ||
45 | if (message.type == Kube.Notifications.error) { | 49 | if (message.type == Kube.Notifications.error) { |
46 | root.pendingError = true | 50 | root.pendingError = true |
47 | } | 51 | } |