+
+
+
+
+
+ {{ level }}
+
+
+
+
+
+
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/dashboard/src/stores/common.js b/dashboard/src/stores/common.js
index f983115ca..c4b90b8d2 100644
--- a/dashboard/src/stores/common.js
+++ b/dashboard/src/stores/common.js
@@ -71,8 +71,8 @@ export const useCommonStore = defineStore({
let data_json = JSON.parse(data)
if (data_json.type === 'log') {
- let log = data_json.data
- this.log_cache.push(log);
+ // let log = data_json.data
+ this.log_cache.push(data_json);
if (this.log_cache.length > this.log_cache_max_len) {
this.log_cache.shift();
}
diff --git a/dashboard/src/views/ConsolePage.vue b/dashboard/src/views/ConsolePage.vue
index e638df47c..2ac9b3a73 100644
--- a/dashboard/src/views/ConsolePage.vue
+++ b/dashboard/src/views/ConsolePage.vue
@@ -44,7 +44,7 @@ import axios from 'axios';
-