1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00

Prevent deleting yourself or resetting your own password from user details page

This commit is contained in:
Andrew Kingston 2022-08-02 14:37:18 +01:00
parent ad83d5ef26
commit 9c78ae349d

View file

@ -237,18 +237,21 @@
</div> </div>
</div> </div>
</div> </div>
<div> {#if userId !== $auth.user._id}
<ActionMenu align="right"> <div>
<span slot="control"> <ActionMenu align="right">
<Icon hoverable name="More" /> <span slot="control">
</span> <Icon hoverable name="More" />
<MenuItem on:click={resetPasswordModal.show} icon="Refresh" </span>
>Force Password Reset</MenuItem <MenuItem on:click={resetPasswordModal.show} icon="Refresh">
> Force password reset
<MenuItem on:click={deleteModal.show} icon="Delete">Delete</MenuItem </MenuItem>
> <MenuItem on:click={deleteModal.show} icon="Delete">
</ActionMenu> Delete
</div> </MenuItem>
</ActionMenu>
</div>
{/if}
</div> </div>
</Layout> </Layout>
<Layout gap="S" noPadding> <Layout gap="S" noPadding>