diff --git a/MoonlightServers.Client/MoonlightServers.Client.csproj b/MoonlightServers.Client/MoonlightServers.Client.csproj index 11f94f9..6858763 100644 --- a/MoonlightServers.Client/MoonlightServers.Client.csproj +++ b/MoonlightServers.Client/MoonlightServers.Client.csproj @@ -35,7 +35,6 @@ - diff --git a/MoonlightServers.Client/UI/Components/Forms/AllocationEditor.razor b/MoonlightServers.Client/UI/Components/Forms/AllocationEditor.razor new file mode 100644 index 0000000..6b5d78a --- /dev/null +++ b/MoonlightServers.Client/UI/Components/Forms/AllocationEditor.razor @@ -0,0 +1 @@ +

Allocation editor

\ No newline at end of file diff --git a/MoonlightServers.Client/UI/Views/Admin/Nodes.razor b/MoonlightServers.Client/UI/Views/Admin/Nodes.razor index 106ae97..506d87b 100644 --- a/MoonlightServers.Client/UI/Views/Admin/Nodes.razor +++ b/MoonlightServers.Client/UI/Views/Admin/Nodes.razor @@ -2,6 +2,7 @@ @using Moonlight.Client.App.Models.Crud @using Moonlight.Shared.Http.Resources +@using MoonlightServers.Client.UI.Components.Forms @using MoonlightServers.Shared.Http.Requests.Admin.Nodes @using MoonlightServers.Shared.Http.Responses.Admin.Nodes @@ -82,6 +83,11 @@ .DefaultPage .DefaultSection .AddProperty(x => x.SslEnabled); + + option + .WithPage("Allocations") + .DefaultSection + .AddComponent(); }; } }