feat: add share indicators for calendars and contacts, update JMAP capabilities #244

This commit is contained in:
Linus Rath
2026-05-02 23:29:21 +02:00
parent f970fd1822
commit 9777dd655c
5 changed files with 50 additions and 3 deletions
@@ -144,6 +144,12 @@ export function CalendarSidebarPanel({
{cal.id === BIRTHDAY_CALENDAR_ID && (
<Cake className="w-3 h-3 text-muted-foreground flex-shrink-0" />
)}
{!cal.isShared && Object.keys(cal.shareWith || {}).length > 0 && (
<Users
className="w-3 h-3 text-muted-foreground flex-shrink-0 ml-auto"
aria-label={tMgmt('share')}
/>
)}
</button>
</div>
);