Skip to content

Commit

Permalink
Fix char
Browse files Browse the repository at this point in the history
  • Loading branch information
wcoder committed Jan 7, 2019
1 parent 3bc1ca4 commit 6fd0fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MaterialChipView/ChipUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public static string GenerateText(string iconText)
return iconText;
}

var parts = iconText.Split(" ");
var parts = iconText.Split(' ');
if (parts.Length == 1)
{
var text = parts[0];
Expand Down

0 comments on commit 6fd0fb3

Please sign in to comment.