refactor: support prefixed webapp routes

This commit is contained in:
3252a8
2026-05-28 14:59:34 +03:00
parent 92f0277dad
commit 613a9860a0
9 changed files with 224 additions and 103 deletions
@@ -17,6 +17,7 @@
export let initialTicketId = null;
export let brand = {};
export let resolvedAvatarUrl = () => "";
export let onOpenUserCard = () => {};
const supportStore = getContext("adminSupportStore");
let reply = "";
@@ -306,7 +307,12 @@
onPatch={(updates) => supportStore.patchTicket(updates)}
onClose={() => supportStore.closeTicket()}
/>
<SupportUserContextPanel ticket={openedTicket} snapshot={userSnapshot} {at} />
<SupportUserContextPanel
ticket={openedTicket}
snapshot={userSnapshot}
{at}
onOpenUser={onOpenUserCard}
/>
<ScrollArea
bind:element={messagesScrollEl}
maxHeight="none"