diff --git a/CSETWebApi/CSETWeb_Api/CSETWebCore.Business/Reports/ReportsDataBusiness.cs b/CSETWebApi/CSETWeb_Api/CSETWebCore.Business/Reports/ReportsDataBusiness.cs index 8475d6a36e..ba8d4af998 100644 --- a/CSETWebApi/CSETWeb_Api/CSETWebCore.Business/Reports/ReportsDataBusiness.cs +++ b/CSETWebApi/CSETWeb_Api/CSETWebCore.Business/Reports/ReportsDataBusiness.cs @@ -1243,11 +1243,18 @@ public List GetDocumentLibrary() select a; foreach (var doc in docs) { - list.Add(new DocumentLibraryTable() + var dlt = new DocumentLibraryTable() { DocumentTitle = doc.Title, FileName = doc.Path - }); + }; + + if (dlt.DocumentTitle == "click to edit title") + { + dlt.DocumentTitle = "(untitled)"; + } + + list.Add(dlt); } return list; diff --git a/CSETWebNg/src/app/reports/comparereport/comparereport.component.html b/CSETWebNg/src/app/reports/comparereport/comparereport.component.html index 6b216f0c03..960cbf1ac2 100644 --- a/CSETWebNg/src/app/reports/comparereport/comparereport.component.html +++ b/CSETWebNg/src/app/reports/comparereport/comparereport.component.html @@ -24,8 +24,7 @@
-

+

MULTIPLE ASSESSMENT COMPARISON REPORT

@@ -157,14 +156,14 @@

Document Library

Title File Name - - {{doc.documenttitle}} - {{doc.FileName}} + + {{doc.documentTitle}} + {{doc.fileName}} - + There are no documents to display
- + \ No newline at end of file