We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d41ad26 commit 3602563Copy full SHA for 3602563
src/LfMerge.Core/Reporting/ConversionError.cs
@@ -118,7 +118,8 @@ public string MongoId() {
118
}
119
120
public string Label() {
121
- if (Comment == null || Comment.Content == null) return string.Empty;
+ if (Comment == null || String.IsNullOrEmpty(Comment.Content)) return string.Empty;
122
+ if (Comment.Content.Length < 100) return Comment.Content;
123
return Comment.Content.Substring(0, 100);
124
125
0 commit comments