Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 23, 2022
1 parent 83ae546 commit 3dfc2b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Core/src/Core/Extensions/ITextInputExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ internal static string GetSeparator(string format)

return separator;
}

internal static string GetPart(string format)
{
if (IsDay(format))
Expand Down

0 comments on commit 3dfc2b8

Please sign in to comment.