1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00
This commit is contained in:
mike12345567 2021-07-05 09:38:01 +01:00
parent 1314edeef1
commit f3f2af1c1d

View file

@ -123,11 +123,19 @@
</div>
<div class="field">
<Label size="L">First name</Label>
<Input thin value={$userFetch?.data?.firstName} on:blur={updateUserFirstName} />
<Input
thin
value={$userFetch?.data?.firstName}
on:blur={updateUserFirstName}
/>
</div>
<div class="field">
<Label size="L">Last name</Label>
<Input thin value={$userFetch?.data?.lastName} on:blur={updateUserLastName} />
<Input
thin
value={$userFetch?.data?.lastName}
on:blur={updateUserLastName}
/>
</div>
<!-- don't let a user remove the privileges that let them be here -->
{#if userId !== $auth.user._id}