File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/frontend/src/components/Answer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,15 +80,15 @@ export const Answer = ({
8080 title = { t ( "tooltips.showThoughtProcess" ) }
8181 ariaLabel = { t ( "tooltips.showThoughtProcess" ) }
8282 onClick = { ( ) => onThoughtProcessClicked ( ) }
83- disabled = { ! answer . context . thoughts ?. length }
83+ disabled = { ! answer . context . thoughts ?. length || isStreaming }
8484 />
8585 < IconButton
8686 style = { { color : "black" } }
8787 iconProps = { { iconName : "ClipboardList" } }
8888 title = { t ( "tooltips.showSupportingContent" ) }
8989 ariaLabel = { t ( "tooltips.showSupportingContent" ) }
9090 onClick = { ( ) => onSupportingContentClicked ( ) }
91- disabled = { ! answer . context . data_points }
91+ disabled = { ! answer . context . data_points || isStreaming }
9292 />
9393 { showSpeechOutputAzure && (
9494 < SpeechOutputAzure answer = { sanitizedAnswerHtml } index = { index } speechConfig = { speechConfig } isStreaming = { isStreaming } />
You can’t perform that action at this time.
0 commit comments