File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
webview-ui/src/components/chat Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -310,9 +310,9 @@ export const ChatRowContent = ({
310310 ) : cost !== null && cost !== undefined ? (
311311 < span style = { { color : normalColor } } > { t ( "chat:apiRequest.title" ) } </ span >
312312 ) : apiRequestFailedMessage ? (
313- < span style = { { color : errorColor , fontWeight : "bold" } } > { t ( "chat:apiRequest.failed" ) } </ span >
313+ < span style = { { color : errorColor } } > { t ( "chat:apiRequest.failed" ) } </ span >
314314 ) : (
315- < span style = { { color : normalColor , fontWeight : "bold" } } > { t ( "chat:apiRequest.streaming" ) } </ span >
315+ < span style = { { color : normalColor } } > { t ( "chat:apiRequest.streaming" ) } </ span >
316316 ) ,
317317 ]
318318 case "followup" :
@@ -1044,10 +1044,7 @@ export const ChatRowContent = ({
10441044 case "api_req_started" :
10451045 // Determine if the API request is in progress
10461046 const isApiRequestInProgress =
1047- apiReqCancelReason === null &&
1048- apiReqCancelReason === undefined &&
1049- ( cost === null || cost === undefined ) &&
1050- ! apiRequestFailedMessage
1047+ apiReqCancelReason === undefined && apiRequestFailedMessage === undefined
10511048
10521049 return (
10531050 < >
You can’t perform that action at this time.
0 commit comments