Skip to content

Commit

Permalink
Fix missing cycle time for flag as blocked
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwangcn9 committed Jan 31, 2024
1 parent 76aac53 commit 0661376
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ private CardCycleTime calculateCardCycleTime(String cardId, List<CycleTimeInfo>
double total = 0;
for (CycleTimeInfo cycleTimeInfo : cycleTimeInfos) {
String swimLane = cycleTimeInfo.getColumn();
if (swimLane.equals("FLAG")) {
if (swimLane.equals(CardStepsEnum.BLOCK.getValue().toUpperCase())) {
boardMap.put(swimLane, CardStepsEnum.BLOCK);
}
if (boardMap.containsKey(swimLane)) {
Expand Down

0 comments on commit 0661376

Please sign in to comment.