Skip to content

Commit 3dadba7

Browse files
Bangarraju-MicrosoftPrajwal-MicrosoftRagini-MicrosoftRohini-MicrosoftAvijit-Microsoft
authored
fix: There is no progress/Process message when deleting chat history from popup (#578)
* feat: FDP changes, Updation to use AI agents (#571) * Implemented Log execution time per prompt in Report * updated readme * updated the code * added functions * feat: added fdp changes, updated to use ai agents instead of openai assistants (#566) * initial bicep changes for fdp * update role assignments in bicep * feat: initial fdp changes for client advisor * updated post deployment scripts to use keyless authentication * rebuilt main.json * fix configuration handling and error checking in backend services * updated unit tests * Refactor code for improved readability and maintainability by organizing imports and formatting code blocks consistently across multiple files. * refactor: couple of typo fix (#570) * initial bicep changes for fdp * update role assignments in bicep * feat: initial fdp changes for client advisor * updated post deployment scripts to use keyless authentication * rebuilt main.json * fix configuration handling and error checking in backend services * updated unit tests * Refactor code for improved readability and maintainability by organizing imports and formatting code blocks consistently across multiple files. * fix: correct variable names for managed identity and AI foundry in scripts and templates --------- Co-authored-by: Rohini-Microsoft <v-rwalunj@microsoft.com> Co-authored-by: Avijit-Microsoft <v-aghorui@microsoft.com> Co-authored-by: Harsh-Microsoft <v-hbangera@microsoft.com> * bug fix(#19849) --------- Co-authored-by: Prajwal-Microsoft <v-dcprajwal@microsoft.com> Co-authored-by: Ragini-Microsoft <v-raginich@microsoft.com> Co-authored-by: Rohini-Microsoft <v-rwalunj@microsoft.com> Co-authored-by: Avijit-Microsoft <v-aghorui@microsoft.com> Co-authored-by: Harsh-Microsoft <v-hbangera@microsoft.com>
1 parent c0d4b90 commit 3dadba7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/App/frontend/src/components/ChatHistory/ChatHistoryPanel.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,15 @@ export function ChatHistoryPanel(_props: ChatHistoryPanelProps) {
8787

8888
const onClearAllChatHistory = async () => {
8989
setClearing(true)
90+
appStateContext?.dispatch({ type: 'TOGGLE_LOADER' });
9091
const response = await historyDeleteAll()
9192
if (!response.ok) {
9293
setClearingError(true)
9394
} else {
9495
appStateContext?.dispatch({ type: 'DELETE_CHAT_HISTORY' })
9596
toggleClearAllDialog()
9697
}
98+
appStateContext?.dispatch({ type: 'TOGGLE_LOADER' });
9799
setClearing(false)
98100
}
99101

0 commit comments

Comments
 (0)