Skip to content

Commit

Permalink
🩹 Fix textarea value
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Aug 9, 2023
1 parent 5bf7893 commit e025346
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to [Sikessem's UI kit](https://github.com/sikessem/ui) will

## [v0.6.1](https://github.com/sikessem/ui/releases/tag/v0.6.1) - 2023-08-07

- [0.x] Fix textarea value
- [0.x] Fix input value
- [0.x] Fix button text
- [0.x] Add text element
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Textarea.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Textarea extends FormControl
public function __construct(
string $name,
string $id = null,
string|array $value = [],
string|array $value = null,
string $current = null,
string $default = null,
bool $invalid = false,
Expand Down

0 comments on commit e025346

Please sign in to comment.