Skip to content

Commit

Permalink
added culture
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisThe0ne committed Nov 21, 2023
2 parents bc66004 + 79e7ed5 commit f3e391b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OnlineMatrixCalculator/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
int columnArrayIndex = columnIndex;
int rowArrayIndex = rowIndex;
<td>
<MudNumericField Culture="@(useUsCulture ? _us : _de)" Value="inputValues[rowArrayIndex, columnArrayIndex]" Style="min-width: 6em;" Min="0" T="double" ValueChanged="(args) => MatrixValue_OnChanged(args, rowArrayIndex, columnArrayIndex)" Variant="Variant.Outlined"></MudNumericField>
<MudNumericField Culture="@(useUsCulture ? _us : _de)" Value="inputValues[rowArrayIndex, columnArrayIndex]" Style="min-width: 6em;" T="double" ValueChanged="(args) => MatrixValue_OnChanged(args, rowArrayIndex, columnArrayIndex)" Variant="Variant.Outlined"></MudNumericField>

Check warning on line 44 in OnlineMatrixCalculator/Pages/Index.razor

View workflow job for this annotation

GitHub Actions / deploy-to-github-pages

Dereference of a possibly null reference.
</td>
}
</tr>
Expand Down

0 comments on commit f3e391b

Please sign in to comment.