Hotfix - save Introduce field
This commit is contained in:
parent
24c028a233
commit
c173ff3135
|
@ -260,7 +260,6 @@ export const AuthorView = (props: AuthorProps) => {
|
|||
<Match when={searchParams().by === 'subscribed-authors'}>
|
||||
<div class="wide-container">
|
||||
<div class="row">
|
||||
asdasd
|
||||
<For each={followingUsers()}>
|
||||
{(follower: Author) => (
|
||||
<div class="col-md-6 col-lg-4">
|
||||
|
|
|
@ -150,9 +150,13 @@ export const ProfileSettingsPage = () => {
|
|||
|
||||
<h4>{t('Introduce')}</h4>
|
||||
<div class="pretty-form__item">
|
||||
<textarea name="presentation" id="presentation" placeholder={t('Introduce')}>
|
||||
{form.bio}
|
||||
</textarea>
|
||||
<textarea
|
||||
name="bio"
|
||||
id="bio"
|
||||
placeholder={t('Introduce')}
|
||||
value={form.bio}
|
||||
onChange={(event) => updateFormField('bio', event.currentTarget.value)}
|
||||
/>
|
||||
<label for="presentation">{t('Introduce')}</label>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user