From 465c4aa6911e8ba5ea05af80e1f26b98d10de31b Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 15 Feb 2025 15:52:44 +0100 Subject: [PATCH] Fixed a bug in which 'APP_SETTINGS' appeared as a valid destination in the "send to" menu --- app/MindWork AI Studio/Tools/ComponentsExtensions.cs | 1 + app/MindWork AI Studio/wwwroot/changelog/v0.9.29.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Tools/ComponentsExtensions.cs b/app/MindWork AI Studio/Tools/ComponentsExtensions.cs index 0f8107cc..e0fdfd47 100644 --- a/app/MindWork AI Studio/Tools/ComponentsExtensions.cs +++ b/app/MindWork AI Studio/Tools/ComponentsExtensions.cs @@ -10,6 +10,7 @@ public static class ComponentsExtensions Components.NONE => false, Components.ERI_ASSISTANT => false, Components.BIAS_DAY_ASSISTANT => false, + Components.APP_SETTINGS => false, _ => true, }; diff --git a/app/MindWork AI Studio/wwwroot/changelog/v0.9.29.md b/app/MindWork AI Studio/wwwroot/changelog/v0.9.29.md index d13c7687..ed82eea3 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v0.9.29.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v0.9.29.md @@ -2,4 +2,5 @@ - Added the possibility to select data sources for chats. This preview feature is hidden behind the RAG feature flag, check your app options in case you want to enable it. - Added an option to all data sources to select a local security policy. This preview feature is hidden behind the RAG feature flag. - Added an option to preselect data sources and options for new chats. This preview feature is hidden behind the RAG feature flag. -- Improved confidence card for small spaces. \ No newline at end of file +- Improved confidence card for small spaces. +- Fixed a bug in which 'APP_SETTINGS' appeared as a valid destination in the "send to" menu. \ No newline at end of file