line multi authors

This commit is contained in:
Mateusz Gruszczyński
2026-07-25 18:33:22 +02:00
parent f4220a7a38
commit 6d10b9c2fd
4 changed files with 15 additions and 4 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ function renderNotes(notes = notesCache) {
<tr>
<td><a class="note-table-link" href="${note.url}?view=split&mode=markdown">${escapeHtml(note.title)}</a></td>
<td class="note-author">${escapeHtml(note.created_by || "Unknown")}</td>
<td>${note.protected ? '<span class="protect-badge">Protected</span>' : '<span class="note-status">Editable</span>'}</td>
<td>${note.protected ? '<span class="protect-badge">Protected</span>' : '<span class="note-status">Unprotected</span>'}</td>
<td>${formatDate(note.updated_at)}</td>
<td class="notes-table-actions">${deleteButton(note, true)}</td>
</tr>`).join("")}</tbody></table></div>`;