mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-02-18 02:45:42 +00:00
fix: 取消提示判断字段错误
This commit is contained in:
parent
c09a4f6c75
commit
0b8b58f85c
@ -31,6 +31,8 @@ async function handleSubmit() {
|
||||
if (loading.value)
|
||||
return
|
||||
|
||||
controller = new AbortController()
|
||||
|
||||
const message = prompt.value.trim()
|
||||
|
||||
if (!message || !message.length) {
|
||||
@ -53,7 +55,7 @@ async function handleSubmit() {
|
||||
addMessage(data?.text ?? '', { options: { conversationId: data.conversationId, parentMessageId: data.id } })
|
||||
}
|
||||
catch (error: any) {
|
||||
if (error.message !== 'cancelled')
|
||||
if (error.message !== 'canceled')
|
||||
addMessage(`${error.message ?? 'Request failed, please try again later.'}`, { error: true })
|
||||
}
|
||||
finally {
|
||||
|
@ -7,7 +7,3 @@ import { Chat } from '@/components/business'
|
||||
<Chat />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
Loading…
x
Reference in New Issue
Block a user