diff options
Diffstat (limited to 'views/log/qml/View.qml')
-rw-r--r-- | views/log/qml/View.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/log/qml/View.qml b/views/log/qml/View.qml index 560a4cff..05fae4ce 100644 --- a/views/log/qml/View.qml +++ b/views/log/qml/View.qml | |||
@@ -175,7 +175,7 @@ Controls1.SplitView { | |||
175 | property string resourceId: details.resourceId | 175 | property string resourceId: details.resourceId |
176 | property string accountId: retriever.currentData ? retriever.currentData.accountId : "" | 176 | property string accountId: retriever.currentData ? retriever.currentData.accountId : "" |
177 | property string accountName: retriever.currentData ? retriever.currentData.name : "" | 177 | property string accountName: retriever.currentData ? retriever.currentData.name : "" |
178 | property string entityId: details.entities.length != 0 ? details.entities[0] : "" | 178 | property string entityId: (details.entities && details.entities.length != 0) ? details.entities[0] : "" |
179 | 179 | ||
180 | function getComponent(subtype) { | 180 | function getComponent(subtype) { |
181 | if (subtype == Kube.Notifications.loginError) { | 181 | if (subtype == Kube.Notifications.loginError) { |