Files
EasyAdmin8/app
wolfcode df3571534c Adjust the editor_textarea function to allow $detail parameter as nullable
The function signature for `editor_textarea` in common.php has been updated
to accept `$detail` as a nullable string. This change allows the function to handle cases
where `$detail` might not be provided or could be null.

```php
-    function editor_textarea(string $detail, string $name = 'desc', string $placeholder = '请输入'): string
+ function editor_textarea(?string $detail, string $name = 'desc', string $placeholder = '请输入'): string
```
2024-06-18 17:36:23 +08:00
..
2024-05-13 11:16:20 +08:00
2024-05-13 11:16:20 +08:00
2023-06-15 16:18:27 +08:00
2024-05-13 11:16:20 +08:00
2024-05-13 11:16:20 +08:00
2023-06-15 16:18:27 +08:00
2023-06-15 16:18:27 +08:00
2024-05-13 11:16:20 +08:00
2023-06-15 16:18:27 +08:00
2024-05-13 11:16:20 +08:00
2024-05-13 11:16:20 +08:00