Bläddra i källkod

1

样式分支
fyf 2 år sedan
förälder
incheckning
2c7229474e
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      FryPot_DosingSystem/ViewModel/AgvViewModel.cs

+ 1
- 1
FryPot_DosingSystem/ViewModel/AgvViewModel.cs Visa fil

@@ -834,7 +834,7 @@ namespace FryPot_DosingSystem.ViewModel
try
{
count = int.Parse(_DishesNum);
if (count > 0 && count <= 8)
if (count >= 0 && count <= 8)
{
_DishesNum = count.ToString();
}


Laddar…
Avbryt
Spara