We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8d45e8 commit e615350Copy full SHA for e615350
src/Forms/Controls/Button.php
@@ -23,6 +23,7 @@ public function __construct(string|Stringable|null $caption = null)
23
parent::__construct($caption);
24
$this->control->type = 'button';
25
$this->setOption('type', 'button');
26
+ $this->setOmitted();
27
}
28
29
src/Forms/Controls/SubmitButton.php
@@ -35,7 +35,6 @@ public function __construct(string|Stringable|null $caption = null)
35
{
36
37
$this->control->type = 'submit';
38
- $this->setOmitted();
39
40
41
0 commit comments