diff --git a/app/MindWork AI Studio/Components/InnerScrolling.razor b/app/MindWork AI Studio/Components/InnerScrolling.razor
index bad2c091..83fd15e2 100644
--- a/app/MindWork AI Studio/Components/InnerScrolling.razor
+++ b/app/MindWork AI Studio/Components/InnerScrolling.razor
@@ -8,6 +8,11 @@
-
- @this.FooterContent
+
+ @if (this.FooterContent is not null)
+ {
+
+ @this.FooterContent
+
+ }
\ No newline at end of file
diff --git a/app/MindWork AI Studio/Pages/Chat.razor b/app/MindWork AI Studio/Pages/Chat.razor
index beb52663..f87bdde4 100644
--- a/app/MindWork AI Studio/Pages/Chat.razor
+++ b/app/MindWork AI Studio/Pages/Chat.razor
@@ -27,51 +27,49 @@
}
-
+
-
-
-
- @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is not WorkspaceStorageBehavior.DISABLE_WORKSPACES)
- {
-
-
-
- }
-
- @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is WorkspaceStorageBehavior.STORE_CHATS_MANUALLY)
- {
-
-
-
- }
-
-
-
+
+
+ @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is not WorkspaceStorageBehavior.DISABLE_WORKSPACES)
+ {
+
+
+ }
- @if (!string.IsNullOrWhiteSpace(this.currentWorkspaceName))
- {
-
-
-
- }
-
- @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is WorkspaceStorageBehavior.STORE_CHATS_AUTOMATICALLY)
- {
-
-
-
- }
+ @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is WorkspaceStorageBehavior.STORE_CHATS_MANUALLY)
+ {
+
+
+
+ }
- @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is not WorkspaceStorageBehavior.DISABLE_WORKSPACES)
- {
-
-
-
- }
-
-
+
+
+
+
+ @if (!string.IsNullOrWhiteSpace(this.currentWorkspaceName))
+ {
+
+
+
+ }
+
+ @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is WorkspaceStorageBehavior.STORE_CHATS_AUTOMATICALLY)
+ {
+
+
+
+ }
+
+ @if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is not WorkspaceStorageBehavior.DISABLE_WORKSPACES)
+ {
+
+
+
+ }
+
diff --git a/app/MindWork AI Studio/wwwroot/changelog/v0.8.12.md b/app/MindWork AI Studio/wwwroot/changelog/v0.8.12.md
index 884c5c8a..d693db81 100644
--- a/app/MindWork AI Studio/wwwroot/changelog/v0.8.12.md
+++ b/app/MindWork AI Studio/wwwroot/changelog/v0.8.12.md
@@ -9,4 +9,5 @@
- Improved the language handling of the agenda assistant.
- Improved the chat options readability by separating the preselection of values.
- Improved some default settings. Default key for sending input is now `Enter`. The default update check is now set to hourly. The navigation menu behavior is now set to use tooltips.
-- Refactored the "send to" implementation of assistants.
\ No newline at end of file
+- Refactored the "send to" implementation of assistants.
+- Refactored & unified footer border style handling.
\ No newline at end of file