bugfixing in memory detail modal

frdel committed Oct 1, 2025 at 09:12 UTC 0c837997f751693de654a71fe93d1d9f6a1255db
1 file changed +8 -6
webui/components/settings/memory/memory-detail-modal.html
+8 -6
@@ -124,7 +124,7 @@
124
125 <!-- All Custom Metadata -->
126 <div class="metadata-group" x-show="$store.memoryDashboardStore.detailMemory?.metadata && Object.keys($store.memoryDashboardStore.detailMemory.metadata).length > 0">
127 - <h5>Additional Metadata</h5>
127 + <h5>Raw Metadata</h5>
128 <template x-for="[key, value] in Object.entries($store.memoryDashboardStore.detailMemory?.metadata || {})" :key="key">
129 <div class="metadata-item">
130 <span class="metadata-label" x-text="key + ':'"></span>
@@ -211,13 +211,14 @@
211 .content-section-main {
212 flex: 1;
213 padding: 1.5rem;
214 + padding-bottom: 0;
215 overflow-y: hidden;
216 display: flex;
217 flex-direction: column;
218 }
219
220 .content-block {
220 - margin-bottom: 3rem;
221 + /* margin-bottom: 3rem; */
222 display: flex;
223 flex-direction: column;
224 min-height: 0;
@@ -226,7 +227,7 @@
227 /* Make the first content block (Memory Content) take all available space */
228 .content-block:first-child {
229 flex: 1;
229 - margin-bottom: 1.5rem;
230 + /* margin-bottom: 1.5rem; */
231 min-height: 0;
232 }
233
@@ -235,8 +236,8 @@
236 color: var(--color-text);
237 font-size: 1.1rem;
238 font-weight: 600;
238 - border-bottom: 1px solid var(--color-border);
239 - padding-bottom: 0.5rem;
239 + /* border-bottom: 1px solid var(--color-border); */
240 + /* padding-bottom: 0.5rem; */
241 }
242
243 .memory-content-display {
@@ -247,7 +248,7 @@
248 color: var(--color-text);
249 /* Fixed height: parent container minus 1rem */
250 flex: 1;
250 - min-height: 0;
251 + min-height: 25em;
252 /* Ensure textarea uses same styling */
253 font-family: inherit;
254 font-size: inherit;
@@ -303,6 +304,7 @@
304 border-left: 1px solid var(--color-border);
305 padding: 1.5rem;
306 overflow-y: auto;
307 + max-height: 50em;
308 }
309
310 .metadata-sidebar h4 {