diff --git a/src/LfMerge.Core/Reporting/ConversionError.cs b/src/LfMerge.Core/Reporting/ConversionError.cs index da6607a3..4c64b4cb 100644 --- a/src/LfMerge.Core/Reporting/ConversionError.cs +++ b/src/LfMerge.Core/Reporting/ConversionError.cs @@ -118,7 +118,8 @@ public string MongoId() { } public string Label() { - if (Comment == null || Comment.Content == null) return string.Empty; + if (Comment == null || String.IsNullOrEmpty(Comment.Content)) return string.Empty; + if (Comment.Content.Length < 100) return Comment.Content; return Comment.Content.Substring(0, 100); } }