mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
Update post-form.tsx
This commit is contained in:
@@ -259,11 +259,12 @@ const PostFormTable = ({ closeForm, postCid }: { closeForm: () => void; postCid:
|
|||||||
placeholder={!displayName ? _.capitalize(t('anonymous')) : undefined}
|
placeholder={!displayName ? _.capitalize(t('anonymous')) : undefined}
|
||||||
defaultValue={displayName || undefined}
|
defaultValue={displayName || undefined}
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
setAccount({ ...account, author: { ...account?.author, displayName: e.target.value } });
|
const newDisplayName = e.target.value.trim() || undefined;
|
||||||
|
setAccount({ ...account, author: { ...account?.author, displayName: newDisplayName } });
|
||||||
if (isInPostView) {
|
if (isInPostView) {
|
||||||
setPublishReplyOptions({ displayName: e.target.value || undefined });
|
setPublishReplyOptions({ displayName: newDisplayName });
|
||||||
} else {
|
} else {
|
||||||
setPublishPostStore({ displayName: e.target.value || undefined });
|
setPublishPostStore({ displayName: newDisplayName });
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user