From 3dfc2b821eb3f0f71d3aa99726c240d3fe789089 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Jul 2022 00:19:56 +0000 Subject: [PATCH] [create-pull-request] automated change --- src/Core/src/Core/Extensions/ITextInputExtensions.cs | 2 +- src/Core/src/Platform/Windows/CalendarDatePickerExtensions.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/src/Core/Extensions/ITextInputExtensions.cs b/src/Core/src/Core/Extensions/ITextInputExtensions.cs index ee7ce0a48667..853d8b1edeab 100644 --- a/src/Core/src/Core/Extensions/ITextInputExtensions.cs +++ b/src/Core/src/Core/Extensions/ITextInputExtensions.cs @@ -12,7 +12,7 @@ public static void UpdateText(this ITextInput textInput, string? text) // functional difference to apps. Thus, hide it. var mauiText = textInput.Text ?? string.Empty; var platformText = text ?? string.Empty; - + var maxLength = textInput.MaxLength; if (maxLength >= 0 && platformText.Length > maxLength) diff --git a/src/Core/src/Platform/Windows/CalendarDatePickerExtensions.cs b/src/Core/src/Platform/Windows/CalendarDatePickerExtensions.cs index 798639405e6b..d6ad15670d52 100644 --- a/src/Core/src/Platform/Windows/CalendarDatePickerExtensions.cs +++ b/src/Core/src/Platform/Windows/CalendarDatePickerExtensions.cs @@ -47,7 +47,7 @@ internal static string GetSeparator(string format) return separator; } - + internal static string GetPart(string format) { if (IsDay(format))