This commit is contained in:
mmrbnjd
2025-08-08 23:54:01 +03:30
parent c90e4550c4
commit 1df87f08e8

View File

@@ -361,22 +361,25 @@
isSelectedInbox1 = true; isSelectedInbox1 = true;
isSelectedInbox2 = false; isSelectedInbox2 = false;
isSelectedInbox3 = false; isSelectedInbox3 = false;
Inbox1Items = await chatService.ChatAwaitingOurResponse();
break; break;
case 2: case 2:
isSelectedInbox2 = true; isSelectedInbox2 = true;
isSelectedInbox1 = false; isSelectedInbox1 = false;
isSelectedInbox3 = false; isSelectedInbox3 = false;
Inbox2Items = await chatService.MyChatsIsInProgress();
break; break;
case 3: case 3:
isSelectedInbox3 = true; isSelectedInbox3 = true;
isSelectedInbox2 = false; isSelectedInbox2 = false;
isSelectedInbox1 = false; isSelectedInbox1 = false;
Inbox3Items = await chatService.MyChatsIsFinished();
break; break;
} }
ChatCurrent = null; ChatCurrent = null;
StateHasChanged();
} }
async Task OnClickSendMsg() async Task OnClickSendMsg()
{ {