mirror of https://gitee.com/answerdev/answer.git
fix: #953
This commit is contained in:
parent
b53efcd2dd
commit
cedf5a9516
|
@ -38,7 +38,7 @@ const General: FC = () => {
|
|||
});
|
||||
const checkValidated = (): boolean => {
|
||||
let ret = true;
|
||||
const { name, short_description, description } = formData;
|
||||
const { name } = formData;
|
||||
if (!name.value) {
|
||||
ret = false;
|
||||
formData.name = {
|
||||
|
@ -47,22 +47,6 @@ const General: FC = () => {
|
|||
errorMsg: t('name.msg'),
|
||||
};
|
||||
}
|
||||
if (!short_description.value) {
|
||||
ret = false;
|
||||
formData.short_description = {
|
||||
value: '',
|
||||
isInvalid: true,
|
||||
errorMsg: t('short_description.msg'),
|
||||
};
|
||||
}
|
||||
if (!description.value) {
|
||||
ret = false;
|
||||
formData.description = {
|
||||
value: '',
|
||||
isInvalid: true,
|
||||
errorMsg: t('description.msg'),
|
||||
};
|
||||
}
|
||||
setFormData({
|
||||
...formData,
|
||||
});
|
||||
|
|
|
@ -73,16 +73,8 @@ const Interface: FC = () => {
|
|||
|
||||
const checkValidated = (): boolean => {
|
||||
let ret = true;
|
||||
const { logo, theme, language } = formData;
|
||||
const { theme, language } = formData;
|
||||
const formCheckData = { ...formData };
|
||||
if (!logo.value) {
|
||||
ret = false;
|
||||
formCheckData.logo = {
|
||||
value: '',
|
||||
isInvalid: true,
|
||||
errorMsg: t('logo.msg'),
|
||||
};
|
||||
}
|
||||
if (!theme.value) {
|
||||
ret = false;
|
||||
formCheckData.theme = {
|
||||
|
|
Loading…
Reference in New Issue