소스 검색

Added filter back in

Kenric Nugteren 9 달 전
부모
커밋
b5c8d4cd29
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;