No text trimming since columns are enlargeable

This commit is contained in:
Michael Bucari-Tovo 2022-05-09 15:44:37 -06:00
parent 30feb42ed8
commit 1c9ea0a710

View File

@ -263,11 +263,7 @@ namespace LibationWinForms
{
var doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(book?.Description ?? "");
var noHtml = doc.DocumentNode.InnerText;
return
noHtml.Length < 63 ?
noHtml :
noHtml.Substring(0, 60) + "...";
return doc.DocumentNode.InnerText;
}
/// <summary>