Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit 6fd0fb3

Browse files
committed
Fix char
1 parent 3bc1ca4 commit 6fd0fb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MaterialChipView/ChipUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public static string GenerateText(string iconText)
118118
return iconText;
119119
}
120120

121-
var parts = iconText.Split(" ");
121+
var parts = iconText.Split(' ');
122122
if (parts.Length == 1)
123123
{
124124
var text = parts[0];

0 commit comments

Comments
 (0)