Rename "completed" to "compl", trying to fix binding problem again

seems to have worked.
This commit is contained in:
2020-07-13 21:25:13 -04:00
parent 620af9657d
commit c7c42af198
4 changed files with 7 additions and 5 deletions
+3 -1
View File
@@ -143,12 +143,14 @@ namespace LeafWeb.WebCms.Utility
select li;
}
if (query.completed)
if (query.compl)
{
resultItems =
from li in resultItems
where
li.CurrentStatus == LeafInputStatusType.Complete
// didn't have an error message
&& ! li.OutputFiles.Any(f => f.Filename.Contains(LeafOutputFile.Filename_ErrorMessage))
select li;
}