show full text instead
Some checks failed
PHPUnit / test (push) Has been cancelled

This commit is contained in:
2026-07-17 17:35:00 +02:00
parent fc23f7a619
commit 4d7be68080
2 changed files with 2 additions and 6 deletions

View File

@ -3498,15 +3498,11 @@ body.logged-in .insights-chart-card.card:hover {
}
.client-note-cell {
max-width: 220px;
max-width: 280px;
vertical-align: middle;
}
.client-note-text {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
white-space: pre-wrap;
word-break: break-word;
font-size: 0.9rem;

View File

@ -742,7 +742,7 @@ function clientRowHTML(c) {
});
const note = String(c.note || '').trim();
const noteCell = note
? `<td class="client-note-cell" title="${esc(note)}"><span class="client-note-text">${esc(note)}</span></td>`
? `<td class="client-note-cell"><span class="client-note-text">${esc(note)}</span></td>`
: `<td class="client-note-cell client-note-empty">—</td>`;
return `