From dbe709ec12341ee629244701389989ff5418277e Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Fri, 26 Jul 2024 20:07:41 +0200 Subject: [PATCH] Refactored config. components into blocks namespace --- .../Components/{ => Blocks}/ConfigurationOption.razor | 0 .../Components/{ => Blocks}/ConfigurationOption.razor.cs | 2 +- .../Components/{ => Blocks}/ConfigurationSelect.razor | 0 .../Components/{ => Blocks}/ConfigurationSelect.razor.cs | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename app/MindWork AI Studio/Components/{ => Blocks}/ConfigurationOption.razor (100%) rename app/MindWork AI Studio/Components/{ => Blocks}/ConfigurationOption.razor.cs (96%) rename app/MindWork AI Studio/Components/{ => Blocks}/ConfigurationSelect.razor (100%) rename app/MindWork AI Studio/Components/{ => Blocks}/ConfigurationSelect.razor.cs (96%) diff --git a/app/MindWork AI Studio/Components/ConfigurationOption.razor b/app/MindWork AI Studio/Components/Blocks/ConfigurationOption.razor similarity index 100% rename from app/MindWork AI Studio/Components/ConfigurationOption.razor rename to app/MindWork AI Studio/Components/Blocks/ConfigurationOption.razor diff --git a/app/MindWork AI Studio/Components/ConfigurationOption.razor.cs b/app/MindWork AI Studio/Components/Blocks/ConfigurationOption.razor.cs similarity index 96% rename from app/MindWork AI Studio/Components/ConfigurationOption.razor.cs rename to app/MindWork AI Studio/Components/Blocks/ConfigurationOption.razor.cs index b3bed551..68d5cd4d 100644 --- a/app/MindWork AI Studio/Components/ConfigurationOption.razor.cs +++ b/app/MindWork AI Studio/Components/Blocks/ConfigurationOption.razor.cs @@ -1,6 +1,6 @@ using Microsoft.AspNetCore.Components; -namespace AIStudio.Components; +namespace AIStudio.Components.Blocks; /// /// Configuration component for any boolean option. diff --git a/app/MindWork AI Studio/Components/ConfigurationSelect.razor b/app/MindWork AI Studio/Components/Blocks/ConfigurationSelect.razor similarity index 100% rename from app/MindWork AI Studio/Components/ConfigurationSelect.razor rename to app/MindWork AI Studio/Components/Blocks/ConfigurationSelect.razor diff --git a/app/MindWork AI Studio/Components/ConfigurationSelect.razor.cs b/app/MindWork AI Studio/Components/Blocks/ConfigurationSelect.razor.cs similarity index 96% rename from app/MindWork AI Studio/Components/ConfigurationSelect.razor.cs rename to app/MindWork AI Studio/Components/Blocks/ConfigurationSelect.razor.cs index 8fb876c4..4f0fe496 100644 --- a/app/MindWork AI Studio/Components/ConfigurationSelect.razor.cs +++ b/app/MindWork AI Studio/Components/Blocks/ConfigurationSelect.razor.cs @@ -2,7 +2,7 @@ using AIStudio.Settings; using Microsoft.AspNetCore.Components; -namespace AIStudio.Components; +namespace AIStudio.Components.Blocks; /// /// Configuration component for selecting a value from a list.