thoughts alignment in kvps
frdel committed
Jan 28, 2026 at 11:18 UTC
5fdc0bdef470992d3f6bc5267490d345200b1353
2 files changed
+5
-1
webui/css/messages.css
+4
@@ -438,6 +438,10 @@
438
font-size: 0.75rem;
439
}
440
441
+.kvps-val p{
442
+ margin:0;
443
+}
444
+
445
.kvps-val pre {
446
white-space: pre-wrap; /* keep \n, collapse no spaces, allow wrapping */
447
word-break: break-word; /* optional – forces really long “words” to break */
webui/js/messages.js
+1
-1
@@ -1778,7 +1778,7 @@ function drawKvpsIncremental(container, kvps, latex) {
1778
imageViewerStore.open(imgElement.src, { refreshInterval: 1000 });
1779
});
1780
} else {
1781
- const span = document.createElement("span");
1781
+ const span = document.createElement("p");
1782
span.innerHTML = convertHTML(value);
1783
tdiv.appendChild(span);
1784