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
+2 -2
View File
@@ -57,7 +57,7 @@ namespace LeafWeb.WebCms.Models
public string phips2 { get; set; }
[Display(Name = "Show Only Successfully Completed")]
public bool completed { get; set; }
public bool compl { get; set; }
public bool HasExtendedParameters =>
!(
@@ -71,7 +71,7 @@ namespace LeafWeb.WebCms.Models
&& string.IsNullOrEmpty(pari)
&& string.IsNullOrEmpty(tleaf)
&& string.IsNullOrEmpty(phips2)
&& !completed
&& !compl
);
}
}