Skip to content

Commit 343e21b

Browse files
authored
Fix issue with bold not being applied
1 parent c303e4f commit 343e21b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Microsoft.Toolkit.Uwp.SampleApp/SamplePages/StringExtensions/StringExtensionsPage.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ private void ValidateCurrentText()
3535
IsValidDecimalResult.FontWeight = InputTextBox.Text.IsDecimal() ? FontWeights.Bold : FontWeights.Normal;
3636

3737
IsValidStringResult.Text = InputTextBox.Text.IsCharacterString().ToString();
38-
IsValidPhoneNumberResult.FontWeight = InputTextBox.Text.IsCharacterString() ? FontWeights.Bold : FontWeights.Normal;
38+
IsValidStringResult.FontWeight = InputTextBox.Text.IsCharacterString() ? FontWeights.Bold : FontWeights.Normal;
3939

4040
IsValidPhoneNumberResult.Text = InputTextBox.Text.IsPhoneNumber().ToString();
4141
IsValidPhoneNumberResult.FontWeight = InputTextBox.Text.IsPhoneNumber() ? FontWeights.Bold : FontWeights.Normal;
4242
}
4343
}
44-
}
44+
}

0 commit comments

Comments
 (0)