From 3b3ca0ebc601077e30a66af0203dc38c7f7b713f Mon Sep 17 00:00:00 2001 From: Mladen Macanovic Date: Tue, 28 Nov 2023 09:18:30 +0100 Subject: [PATCH] Readonly members on NumericEdit --- Source/Blazorise/Components/NumericEdit/NumericEdit.razor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Blazorise/Components/NumericEdit/NumericEdit.razor.cs b/Source/Blazorise/Components/NumericEdit/NumericEdit.razor.cs index 413f0768a0..b5e51a5b7d 100644 --- a/Source/Blazorise/Components/NumericEdit/NumericEdit.razor.cs +++ b/Source/Blazorise/Components/NumericEdit/NumericEdit.razor.cs @@ -22,12 +22,12 @@ public partial class NumericEdit : BaseTextInput, IAsyncDisposab /// /// True if the TValue is an integer type. /// - private bool isIntegerType; + private readonly bool isIntegerType; /// /// Contains the correct inputmode for the input element, based in the TValue. /// - private string inputMode; + private readonly string inputMode; /// /// Indicates if parameter is defined.