From ab84cf1093e2dc653a27d0b448d62fee2761aac4 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 1 Jun 2025 20:49:52 +0200 Subject: [PATCH] Add enterprise configuration handling in SettingsPanelProviders --- .../Settings/SettingsPanelProviders.razor | 27 ++++++++++++------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/app/MindWork AI Studio/Components/Settings/SettingsPanelProviders.razor b/app/MindWork AI Studio/Components/Settings/SettingsPanelProviders.razor index 1ec52625..1389425a 100644 --- a/app/MindWork AI Studio/Components/Settings/SettingsPanelProviders.razor +++ b/app/MindWork AI Studio/Components/Settings/SettingsPanelProviders.razor @@ -45,15 +45,24 @@ - - - - - - - - - + @if (context.IsEnterpriseConfiguration) + { + + + + } + else + { + + + + + + + + + + }