Skip to content

Commit

Permalink
Merge pull request #29 from williamengbjerg/fix/copy-action-method-na…
Browse files Browse the repository at this point in the history
…me-mismatch

Fix method name mismatch in CopyAction class
  • Loading branch information
dmandrade authored Apr 3, 2024
2 parents 363215d + dfb1d09 commit 6a7bd63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Forms/Actions/CopyAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ public function getCopyable(): ?string
return $this->evaluate(fn ($component) => '$wire.'.$component->getStatePath());
}

return parent::getDefaultCopyable();
return $this->getDefaultCopyable();
}
}

0 comments on commit 6a7bd63

Please sign in to comment.