Skip to content

Commit

Permalink
copy & generate off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
phpsa authored Nov 29, 2023
1 parent 7dd5e8a commit 98a9e3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Traits/CanCopy.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

trait CanCopy
{
protected bool|Closure $copyable = true;
protected bool|Closure $copyable = false;

protected string $copyIcon = 'heroicon-o-clipboard';

Expand Down
2 changes: 1 addition & 1 deletion src/Traits/CanGenerate.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ trait CanGenerate
{
protected string $generateIcon = 'heroicon-o-key';

protected bool|Closure $generatable = true;
protected bool|Closure $generatable = false;

protected int $passwordMinLen = 8;

Expand Down

0 comments on commit 98a9e3e

Please sign in to comment.