fix: hover card maiden name false positive, editor placeholder on non-empty content, mention persistence #375

Merged
marcel merged 12 commits from fix/hover-card-placeholder-maiden-name into main 2026-04-29 21:33:18 +02:00
Showing only changes of commit 96d9ff5db1 - Show all commits

View File

@@ -131,7 +131,7 @@ const showMaidenName = $derived(
<div class="chips" data-testid="person-hover-card-chips">
{#each familyChips as chip (chip.id)}
<span class="chip">
<span class="chip-type">{chipLabel(chip, personId)}</span>
<span class="chip-type">{chipLabel(chip, personId)}:</span>
{otherName(chip, personId)}
</span>
{/each}
@@ -261,10 +261,6 @@ const showMaidenName = $derived(
opacity: 0.7;
}
.chip-type::after {
content: ':';
}
.notes {
font-size: 13px;
color: var(--c-ink-2);