fix: don't show report button for own members

This commit is contained in:
Sam 2023-04-26 09:19:58 +02:00
parent 80a0257832
commit e5ec3dcbeb
No known key found for this signature in database
GPG Key ID: B4EF20DDE721CAA1
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@
<Button color="secondary" outline on:click={copyURL}> <Button color="secondary" outline on:click={copyURL}>
<Icon name="clipboard" /> Copy link <Icon name="clipboard" /> Copy link
</Button> </Button>
{#if $userStore && $userStore.id !== data.id} {#if $userStore && $userStore.id !== data.user.id}
<ReportButton subject="member" reportUrl="/members/{data.id}/reports" /> <ReportButton subject="member" reportUrl="/members/{data.id}/reports" />
{/if} {/if}
</InputGroup> </InputGroup>