We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24740e6 commit 81091b0Copy full SHA for 81091b0
src/Services/Forms/Fields/Traits/DisableActions.php
@@ -4,14 +4,14 @@
4
5
trait DisableActions
6
{
7
- protected bool $actions = true;
+ protected bool $displayActions = true;
8
9
/**
10
* Adds a border around the options.
11
*/
12
- public function disableActions(bool $actions = true): static
+ public function disableActions(bool $displayActions = true): static
13
14
- $this->displayActions = !$actions;
+ $this->displayActions = !$displayActions;
15
16
return $this;
17
}
src/Services/Forms/InlineRepeater.php
@@ -36,7 +36,6 @@ protected function __construct(
36
private ?string $titleField = null,
37
private ?bool $hideTitlePrefix = false,
38
private ?bool $buttonAsLink = false,
39
- private ?bool $displayActions = true,
40
protected ?array $connectedTo = null,
41
) {
42
0 commit comments