Ver Fonte

bugfix max value in range slider

andre há 4 anos atrás
pai
commit
4e0148b7d1
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      core/UI/Widget/Forms/Fields/Range.php

+ 1 - 1
core/UI/Widget/Forms/Fields/Range.php

@@ -39,7 +39,7 @@ class Range extends BaseField
         return $this->maxValue;
     }
 
-    public function setMaxValue($minValue)
+    public function setMaxValue($maxValue)
     {
         $this->maxValue = $maxValue;
     }