Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit 695e6dd

Browse files
committed
Always cast name to string
1 parent 953fbe6 commit 695e6dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/Inputs/CustomSelect.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function __construct(
7272
public function configToJs(): Js
7373
{
7474
return Js::from([
75-
'name' => $this->name,
75+
'name' => (string) $this->name,
7676
'multiple' => $this->multiple,
7777
'minSelected' => $this->minSelected,
7878
'maxSelected' => $this->maxSelected,

0 commit comments

Comments
 (0)