From bd09a89beff531e63521452a63bd998d13424b94 Mon Sep 17 00:00:00 2001 From: frdel <38891707+frdel@users.noreply.github.com> Date: Mon, 29 Sep 2025 21:39:51 +0200 Subject: [PATCH] memory dashboard polishing --- python/api/memory_dashboard.py | 4 +- .../settings/memory/memory-dashboard.html | 264 ++++++++++-------- 2 files changed, 149 insertions(+), 119 deletions(-) diff --git a/python/api/memory_dashboard.py b/python/api/memory_dashboard.py index 6aafa3459..a494227c8 100644 --- a/python/api/memory_dashboard.py +++ b/python/api/memory_dashboard.py @@ -229,8 +229,8 @@ class MemoryDashboard(ApiHandler): "id": metadata.get("id", "unknown"), "area": metadata.get("area", "unknown"), "timestamp": metadata.get("timestamp", "unknown"), - "content_preview": m.page_content[:200] - + ("..." if len(m.page_content) > 200 else ""), + # "content_preview": m.page_content[:200] + # + ("..." if len(m.page_content) > 200 else ""), "content_full": m.page_content, "knowledge_source": metadata.get("knowledge_source", False), "source_file": metadata.get("source_file", ""), diff --git a/webui/components/settings/memory/memory-dashboard.html b/webui/components/settings/memory/memory-dashboard.html index 715e4a177..69bb136b5 100644 --- a/webui/components/settings/memory/memory-dashboard.html +++ b/webui/components/settings/memory/memory-dashboard.html @@ -10,60 +10,61 @@