This commit is contained in:
mmrbnjd
2025-08-18 18:25:02 +03:30
parent 561f58784c
commit 88aac97280

View File

@@ -13,7 +13,15 @@
@using Microsoft.AspNetCore.Components.Web @using Microsoft.AspNetCore.Components.Web
@inject CompanyService companyService @inject CompanyService companyService
@inject ToastService toastService @inject ToastService toastService
<PageTitle>گفتگو با دستیار هوشمند @CompanyInfo.FullName</PageTitle> @if (CompanyInfo == null)
{
<PageTitle>دستیار هوشمند</PageTitle>
}
else
{
<PageTitle>گفتگو با دستیار هوشمند @CompanyInfo.FullName</PageTitle>
}
<div class="container-fluid"> <div class="container-fluid">
<div class="row" style="height:85vh"> <div class="row" style="height:85vh">
@if (isReady) @if (isReady)
@@ -108,7 +116,7 @@
await LoadMessages(); await LoadMessages();
isReady = true; isReady = true;
} }
else else
{ {
isError = true; isError = true;
msgError = "دستیار هوشمند یافت نشد"; msgError = "دستیار هوشمند یافت نشد";