From bc56b2d9b0c767f9db85e78687b277cb8d29a2d5 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 10 Jul 2024 13:20:45 +0200 Subject: [PATCH] Disable workspaces when desired --- .../Components/Pages/Chat.razor | 29 ++++++++++--------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/app/MindWork AI Studio/Components/Pages/Chat.razor b/app/MindWork AI Studio/Components/Pages/Chat.razor index 768311f3..e1c73870 100644 --- a/app/MindWork AI Studio/Components/Pages/Chat.razor +++ b/app/MindWork AI Studio/Components/Pages/Chat.razor @@ -37,16 +37,19 @@ - - - - - Your workspaces - - - - - - - - \ No newline at end of file +@if (this.SettingsManager.ConfigurationData.WorkspaceStorageBehavior != WorkspaceStorageBehavior.DISABLE_WORKSPACES) +{ + + + + + Your workspaces + + + + + + + + +} \ No newline at end of file