Skip to content

Commit

Permalink
Merge branch 'main' into bugfix/use-strings-for-internal-values-of-Nu…
Browse files Browse the repository at this point in the history
…meric
  • Loading branch information
jdreesen authored Jan 17, 2025
2 parents ac8c105 + 84def2a commit 3004d72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EditableDialogBox/EditableItem/NumericItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public function setDefaultValue(int $value): static
protected function getConfig(): array
{
return [
'minValue' => $this->min,
'maxValue' => $this->max,
'minValue' => (string) $this->min,
'maxValue' => (string) $this->max,
];
}
}

0 comments on commit 3004d72

Please sign in to comment.