Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonvarga committed Nov 4, 2024
1 parent 4919185 commit 572ad51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Fieldtypes/Bard.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Bard extends Replicator
];

protected $categories = ['text', 'structured'];
protected $keywords = ['rich', 'richtext', 'rich text', 'editor', 'wysiwg', 'builder', 'page builder', 'gutenberg'];
protected $keywords = ['rich', 'richtext', 'rich text', 'editor', 'wysiwg', 'builder', 'page builder', 'gutenberg', 'content'];
protected $rules = [];

protected function configFieldItems(): array
Expand Down
2 changes: 1 addition & 1 deletion src/Fieldtypes/Markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class Markdown extends Fieldtype
{
protected $categories = ['text'];
protected $keywords = ['md'];
protected $keywords = ['md', 'content', 'html'];

use Concerns\ResolvesStatamicUrls;

Expand Down
1 change: 1 addition & 0 deletions src/Fieldtypes/Replicator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
class Replicator extends Fieldtype
{
protected $categories = ['structured'];
protected $keywords = ['builder', 'page builder', 'content'];
protected $rules = ['array'];

protected function configFieldItems(): array
Expand Down

0 comments on commit 572ad51

Please sign in to comment.