Skip to content

Commit

Permalink
fix: printing missing component quantity
Browse files Browse the repository at this point in the history
  • Loading branch information
Casper Bollen authored and Casper Bollen committed Feb 17, 2024
1 parent df0e61e commit f0ab1c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Informedica.GenOrder.Lib/Order.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2046,6 +2046,7 @@ module Order =
| _ when q |> String.notEmpty && s |> String.notEmpty
-> $"{q} {c.Shape} {s}"
| _ when s |> String.notEmpty -> $"{c.Shape} {s}"
| _ when q |> String.notEmpty -> $"{q} {c.Shape}"
| _ -> ""
)
|> Seq.filter String.notEmpty
Expand Down

0 comments on commit f0ab1c5

Please sign in to comment.