Skip to content

Commit 58a5e34

Browse files
committed
Tiny update (typo fix)
1 parent 026caf4 commit 58a5e34

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Inertia.AspNetCore/Inertia.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net5.0</TargetFramework>
55
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
66
<PackageId>Inertia.AspNetCore</PackageId>
7-
<Version>0.0.3</Version>
7+
<Version>0.0.4</Version>
88
<Description>A simple AspNetCore adapter for Inertia.js. https://inertiajs.com</Description>
99
<Authors>Frédéric Choquette</Authors>
1010
<PackageProjectUrl>https://www.nuget.org/packages/Inertia.AspNetCore/</PackageProjectUrl>

Inertia.AspNetCore/Result.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ namespace Inertia.AspNetCore
99
internal class InertiaData
1010
{
1111
public string component { get; set; }
12+
public object props { get; set; }
1213
public string url { get; set; }
1314
public string version { get; set; }
14-
public object props { get; set; }
15+
1516
}
1617

1718
internal class InertiaResult : IActionResult

0 commit comments

Comments
 (0)