mirror of https://gitee.com/answerdev/answer.git
fix: create tag error message prompt optimization
This commit is contained in:
parent
118dc29ae9
commit
2076dcd0e5
|
@ -903,6 +903,7 @@ ui:
|
|||
Views: Viewed
|
||||
Follow: Follow
|
||||
Following: Following
|
||||
follow_tip: Follow this question to receive notifications.
|
||||
answered: answered
|
||||
closed_in: Closed in
|
||||
show_exist: Show existing question.
|
||||
|
|
|
@ -79,10 +79,32 @@ const Index = () => {
|
|||
formData.description.value,
|
||||
]);
|
||||
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
setFormData({
|
||||
displayName: {
|
||||
value: '',
|
||||
isInvalid: false,
|
||||
errorMsg: '',
|
||||
},
|
||||
slugName: {
|
||||
value: '',
|
||||
isInvalid: false,
|
||||
errorMsg: '',
|
||||
},
|
||||
description: {
|
||||
value: '',
|
||||
isInvalid: false,
|
||||
errorMsg: '',
|
||||
},
|
||||
});
|
||||
};
|
||||
}, []);
|
||||
|
||||
const handleDescriptionChange = (value: string) =>
|
||||
setFormData({
|
||||
...formData,
|
||||
description: { ...formData.description, value },
|
||||
description: { ...formData.description, value, isInvalid: false },
|
||||
});
|
||||
|
||||
const handleSubmit = (event: React.FormEvent<HTMLFormElement>) => {
|
||||
|
@ -115,20 +137,29 @@ const Index = () => {
|
|||
const handleDisplayNameChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
setFormData({
|
||||
...formData,
|
||||
displayName: { ...formData.displayName, value: e.currentTarget.value },
|
||||
displayName: {
|
||||
...formData.displayName,
|
||||
value: e.currentTarget.value,
|
||||
isInvalid: false,
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
const handleSlugNameChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
setFormData({
|
||||
...formData,
|
||||
slugName: { ...formData.slugName, value: e.currentTarget.value },
|
||||
slugName: {
|
||||
...formData.slugName,
|
||||
value: e.currentTarget.value,
|
||||
isInvalid: false,
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
usePageTags({
|
||||
title: t('create_tag', { keyPrefix: 'page_title' }),
|
||||
});
|
||||
|
||||
return (
|
||||
<Container className="pt-4 mt-2 mb-5 edit-answer-wrap">
|
||||
<Row className="justify-content-center">
|
||||
|
|
Loading…
Reference in New Issue