Ver código fonte

fix: app name can be empty in settings modal (#2761)

tags/0.5.9
Vikey Chen 1 ano atrás
pai
commit
88145efa97
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 6 adições e 0 exclusões
  1. 6
    0
      web/app/components/app/overview/settings/index.tsx

+ 6
- 0
web/app/components/app/overview/settings/index.tsx Ver arquivo

@@ -12,6 +12,7 @@ import { SimpleSelect } from '@/app/components/base/select'
import type { AppDetailResponse } from '@/models/app'
import type { Language } from '@/types/app'
import EmojiPicker from '@/app/components/base/emoji-picker'
import { useToastContext } from '@/app/components/base/toast'

import { languages } from '@/i18n/language'

@@ -42,6 +43,7 @@ const SettingsModal: FC<ISettingsModalProps> = ({
onClose,
onSave,
}) => {
const { notify } = useToastContext()
const [isShowMore, setIsShowMore] = useState(false)
const { icon, icon_background } = appInfo
const { title, description, copyright, privacy_policy, default_language } = appInfo.site
@@ -67,6 +69,10 @@ const SettingsModal: FC<ISettingsModalProps> = ({
}

const onClickSave = async () => {
if (!inputInfo.title) {
notify({ type: 'error', message: t('app.newApp.nameNotEmpty') })
return
}
setSaveLoading(true)
const params = {
title: inputInfo.title,

Carregando…
Cancelar
Salvar