From 77626a8e52ba49ba048539839e104382d299e783 Mon Sep 17 00:00:00 2001 From: "HOME-LAPTOP\\kshkulev" Date: Mon, 20 Oct 2025 17:22:47 +0900 Subject: [PATCH] Add development environment indication --- Hcs.WebApp/Components/Layout/MainLayout.razor | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Hcs.WebApp/Components/Layout/MainLayout.razor b/Hcs.WebApp/Components/Layout/MainLayout.razor index 928580d..ab9839d 100644 --- a/Hcs.WebApp/Components/Layout/MainLayout.razor +++ b/Hcs.WebApp/Components/Layout/MainLayout.razor @@ -4,13 +4,22 @@ @inject NavigationManager NavigationManager @inject NotificationService NotificationService +@inject IWebHostEnvironment WebHostEnvironment - + @if (WebHostEnvironment.IsDevelopment()) + { + + + } + else + { + + }