Skip to content

Commit

Permalink
Readonly members on NumericEdit
Browse files Browse the repository at this point in the history
  • Loading branch information
stsrki committed Nov 28, 2023
1 parent ab21ac0 commit 3b3ca0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Blazorise/Components/NumericEdit/NumericEdit.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ public partial class NumericEdit<TValue> : BaseTextInput<TValue>, IAsyncDisposab
/// <summary>
/// True if the TValue is an integer type.
/// </summary>
private bool isIntegerType;
private readonly bool isIntegerType;

/// <summary>
/// Contains the correct inputmode for the input element, based in the TValue.
/// </summary>
private string inputMode;
private readonly string inputMode;

/// <summary>
/// Indicates if <see cref="Min"/> parameter is defined.
Expand Down

0 comments on commit 3b3ca0e

Please sign in to comment.