diff --git a/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx b/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx index a17f52778..abef06942 100644 --- a/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx +++ b/src/Explorer/QueryCopilot/QueryCopilotPromptbar.tsx @@ -305,7 +305,7 @@ export const QueryCopilotPromptbar: React.FC = ({ if (isGeneratingQuery === null) { return " "; } else if (isGeneratingQuery) { - return "Content is loading"; + return "Thinking"; } else { return "Content is updated"; } @@ -400,6 +400,7 @@ export const QueryCopilotPromptbar: React.FC = ({ startGenerateQueryProcess()} aria-label="Send" @@ -706,32 +707,35 @@ export const QueryCopilotPromptbar: React.FC = ({ )} )} + {(showFeedbackBar || isGeneratingQuery) && ( + + )} {isGeneratingQuery && ( - + )}