diff --git a/TalentBlazor.ServiceInterface/TalentBlazor.ServiceInterface.csproj b/TalentBlazor.ServiceInterface/TalentBlazor.ServiceInterface.csproj index 137fa2b..7a18510 100644 --- a/TalentBlazor.ServiceInterface/TalentBlazor.ServiceInterface.csproj +++ b/TalentBlazor.ServiceInterface/TalentBlazor.ServiceInterface.csproj @@ -12,11 +12,11 @@ - - - - - + + + + + diff --git a/TalentBlazor.Tests/TalentBlazor.Tests.csproj b/TalentBlazor.Tests/TalentBlazor.Tests.csproj index 7a620ee..08fc056 100644 --- a/TalentBlazor.Tests/TalentBlazor.Tests.csproj +++ b/TalentBlazor.Tests/TalentBlazor.Tests.csproj @@ -22,6 +22,7 @@ + diff --git a/TalentBlazor/Components/Pages/Talent/JobEdit.razor b/TalentBlazor/Components/Pages/Talent/JobEdit.razor index fc4dcf9..76f49d2 100644 --- a/TalentBlazor/Components/Pages/Talent/JobEdit.razor +++ b/TalentBlazor/Components/Pages/Talent/JobEdit.razor @@ -1,7 +1,9 @@ @inherits AppComponentBase @inject NavigationManager navigationManager; +@using ServiceStack.Blazor.Components.Tailwind @layout MainLayout @page "/jobs/{JobId:int}/edit" +@rendermode RenderMode.InteractiveServer
@@ -36,12 +38,7 @@
- @if (appMetadata != null) - { - - - - } +
@@ -56,16 +53,12 @@ UpdateJob request = new(); Job? job; - async Task Save(UpdateJob req) - { - //request = req; - } - - async Task Done(Job response) + async Task Save(Job model) { + await RefreshData(); navigationManager.NavigateTo("/jobs/" + JobId + "/applications"); } - + async Task OnCancel() { navigationManager.NavigateTo("/jobs/" + JobId + "/applications");