2 Commits
v2.2 ... v2.4

Author SHA1 Message Date
Mikhail Chusavitin
b38c878724 fix(viewer): set min-width on th cell to prevent column header truncation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-19 14:46:30 +03:00
Mikhail Chusavitin
969e246b81 fix(viewer): prevent column header placeholder truncation via min-width
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-19 14:45:19 +03:00

View File

@@ -76,6 +76,7 @@ document.addEventListener("DOMContentLoaded", () => {
input.type = "text";
input.className = "col-filter col-filter-text";
input.placeholder = colName;
th.style.minWidth = `calc(${colName.length}ch + 20px)`;
input.setAttribute("aria-label", "filter " + colName);
let debounceTimer;
input.addEventListener("input", () => {