From 45bcddbd38f46e667851b13fa9bc45db0b8f633a Mon Sep 17 00:00:00 2001
From: "daragan.andrey@demlabs.net" <daragan.andrey@demlabs.net>
Date: Fri, 3 May 2019 19:38:58 +0300
Subject: [PATCH] [+] Added Project resource error fixed.

---
 .../DapUiQmlWidgetChainNodeLogs.ui.qml        | 41 +++++++++++++++++++
 1 file changed, 41 insertions(+)
 create mode 100644 KelvinDashboardGUI/DapUiQmlWidgetChainNodeLogs.ui.qml

diff --git a/KelvinDashboardGUI/DapUiQmlWidgetChainNodeLogs.ui.qml b/KelvinDashboardGUI/DapUiQmlWidgetChainNodeLogs.ui.qml
new file mode 100644
index 0000000..7d7f8bd
--- /dev/null
+++ b/KelvinDashboardGUI/DapUiQmlWidgetChainNodeLogs.ui.qml
@@ -0,0 +1,41 @@
+import QtQuick 2.11
+import QtQuick.Controls 1.4
+import QtQuick.Controls 2.2
+
+Page {
+    id: dapUiQmlWidgetChainNodeLogs
+    title: "Logs"
+    
+    TableView {
+        id: tableViewLogs
+        anchors.top: parent.top
+        anchors.bottom: parent.bottom
+        anchors.left: parent.left
+        anchors.right: parent.right
+
+
+        TableViewColumn {
+            id: columnDate
+            role: "date"
+            title: "Date"
+        }
+        TableViewColumn {
+            id: columnTime
+            role: "time"
+            title: "Time"
+        }
+        TableViewColumn {
+            id: columnFile
+            role: "file"
+            title: "File"
+        }
+        TableViewColumn {
+            id: columnMessage
+            role: "Message"
+            title: "Message"
+        }
+    }
+    
+                
+    
+}
-- 
GitLab