From 297cf0089104f775a95ddfc0db9a1b3ce6577b95 Mon Sep 17 00:00:00 2001 From: Leon Hoppe Date: Mon, 19 Jan 2026 19:39:25 +0100 Subject: [PATCH] Fixed #38 --- .idea/.idea.HopFrame/.idea/workspace.xml | 28 +++++++++---------- src/HopFrame.Core/HopFrame.Core.csproj | 1 + .../Components/Pages/HopFrameTablePage.razor | 2 +- src/HopFrame.Web/HopFrame.Web.csproj | 1 + 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.idea/.idea.HopFrame/.idea/workspace.xml b/.idea/.idea.HopFrame/.idea/workspace.xml index 59bf169..70ed7a7 100644 --- a/.idea/.idea.HopFrame/.idea/workspace.xml +++ b/.idea/.idea.HopFrame/.idea/workspace.xml @@ -12,10 +12,7 @@ - - - @@ -714,7 +712,6 @@ \ No newline at end of file diff --git a/src/HopFrame.Core/HopFrame.Core.csproj b/src/HopFrame.Core/HopFrame.Core.csproj index 4bf6fe5..36bbea6 100644 --- a/src/HopFrame.Core/HopFrame.Core.csproj +++ b/src/HopFrame.Core/HopFrame.Core.csproj @@ -9,6 +9,7 @@ README.md MIT HopFrame.Core + true diff --git a/src/HopFrame.Web/Components/Pages/HopFrameTablePage.razor b/src/HopFrame.Web/Components/Pages/HopFrameTablePage.razor index 4f48825..c57cf28 100644 --- a/src/HopFrame.Web/Components/Pages/HopFrameTablePage.razor +++ b/src/HopFrame.Web/Components/Pages/HopFrameTablePage.razor @@ -135,7 +135,7 @@ Items="Enumerable.Range(0, _totalPages)" OptionValue="@(p => p.ToString())" OptionText="@(p => (p + 1).ToString())" - ValueChanged="async s => await ChangePage(Convert.ToInt32(s))" + ValueChanged="@(async s => await ChangePage(Convert.ToInt32(s)))" Width="max-content" SelectedOption="@_currentPage"/> of @_totalPages diff --git a/src/HopFrame.Web/HopFrame.Web.csproj b/src/HopFrame.Web/HopFrame.Web.csproj index f1cfc3b..9685c47 100644 --- a/src/HopFrame.Web/HopFrame.Web.csproj +++ b/src/HopFrame.Web/HopFrame.Web.csproj @@ -9,6 +9,7 @@ README.md MIT HopFrame.Web + true