diff --git a/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs b/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs index 61e5802ec..cbc90c609 100644 --- a/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs +++ b/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs @@ -299,7 +299,18 @@ namespace IRaCIS.Core.Application.Contracts public string LatestReplyUserName { get; set; } = String.Empty; public string Content { get; set; } = string.Empty; - public string ContentReplaced => Content.Replace("
", "").Replace("
", "").Replace("
", "").Replace("
", ""); + public string ContentReplaced { + + get { + + var msg= Content.Replace("
", "").Replace("
", ""); + + string[] substrings = msg.Split(new string[] { "
", "
" }, StringSplitOptions.None); + + return string.Join("\n\n", substrings); + } + + } [DictionaryTranslateAttribute("ChallengeIsClosed")] public bool IsClosed { get; set; }