Prechádzať zdrojové kódy

Added filter back in

Kenric Nugteren 8 mesiacov pred
rodič
commit
b5c8d4cd29
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      prs.desktop/Forms/Issues/IssuesGrid.cs

+ 1 - 1
prs.desktop/Forms/Issues/IssuesGrid.cs

@@ -215,7 +215,7 @@ public class IssuesGrid : DynamicGrid<Kanban>, ISpecificGrid
         CancellationToken token, Action<CoreTable?, Exception?> action)
     {
         criteria.Add(new Filter<Kanban>(x => x.Closed).IsNotEqualTo(Guid.Empty));
-        // criteria.Add(new Filter<Kanban>(CustomerProperty).IsEqualTo(CustomerID.ToString()));
+        criteria.Add(new Filter<Kanban>(CustomerProperty).IsEqualTo(CustomerID.ToString()));
         if(Options.PageSize > 0)
         {
             var inSort = sort;