Skip to content

Commit

Permalink
Merge pull request #370 from K0369/#369-unit-test-failing-on-non-engl…
Browse files Browse the repository at this point in the history
…ish-culture

Fixing #369 by adding invariant culture conversion
  • Loading branch information
zHaytam authored Oct 26, 2023
2 parents 4b6fe1d + 27422d0 commit 2209b52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@using Blazor.Diagrams.Core.Models;

<circle cx="@Vertex.Position.X" cy="@Vertex.Position.Y" fill="@Color" r="10" />
<circle cx="@Vertex.Position.X.ToInvariantString()" cy="@Vertex.Position.Y.ToInvariantString()" fill="@Color" r="10" />

@code {
[Parameter] public LinkVertexModel Vertex { get; set; } = null!;
Expand Down

0 comments on commit 2209b52

Please sign in to comment.