We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 47baebf + d556463 commit d120d5eCopy full SHA for d120d5e
gui/src/components/mainInput/ContinueInputBox.tsx
@@ -115,9 +115,11 @@ function ContinueInputBox(props: ContinueInputBoxProps) {
115
<div className={`relative flex flex-col px-2`}>
116
{props.isMainInput && <Lump />}
117
<GradientBorder
118
- loading={isStreaming && props.isLastUserInput ? 1 : 0}
+ loading={isStreaming && (props.isLastUserInput || isInEdit) ? 1 : 0}
119
borderColor={
120
- isStreaming && props.isLastUserInput ? undefined : vscBackground
+ isStreaming && (props.isLastUserInput || isInEdit)
121
+ ? undefined
122
+ : vscBackground
123
}
124
borderRadius={defaultBorderRadius}
125
>
0 commit comments