Merge pull request #198 from SuanmoSuanyangTechnology/feature/workflow_runtime_zy

fix(web):  handleSSE bugfix
This commit is contained in:
yingzhao
2026-01-26 16:01:27 +08:00
committed by GitHub

View File

@@ -131,7 +131,7 @@ export const handleSSE = async (url: string, data: any, onMessage?: (data: SSEMe
break
case 400:
const error = await response.json();
message.warning(errorData.error);
message.warning(error.error);
throw error || 'Bad Request';
case 504:
const errorJson = await response.json();