소스 검색

Fix to standard leave not displaying correctly on EmployeePlanner

Kenric Nugteren 1 년 전
부모
커밋
ef25c0c94f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      prs.desktop/Components/Calendar/Models/StandardLeaveModel.cs

+ 1 - 1
prs.desktop/Components/Calendar/Models/StandardLeaveModel.cs

@@ -39,7 +39,7 @@ namespace PRSDesktop
                 .Add(c => c.From)
                 .Add(c => c.FromTime)
                 .Add(c => c.To)
-                .Add(c => c.FromTime);
+                .Add(c => c.ToTime);
         }
     }
 }