From 4b79fc7a7481ed37e080172145fd92b32dd9e65a Mon Sep 17 00:00:00 2001 From: Ash Monsh Date: Thu, 30 May 2024 03:53:36 +0300 Subject: [PATCH] remove helper text from Paragraph --- src/Fields/Classes/Paragraph.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Fields/Classes/Paragraph.php b/src/Fields/Classes/Paragraph.php index 795b5cb5..9fadf0d9 100644 --- a/src/Fields/Classes/Paragraph.php +++ b/src/Fields/Classes/Paragraph.php @@ -63,6 +63,8 @@ public function appendFilamentComponentsOptions($component, $zeusField, bool $ha { parent::appendFilamentComponentsOptions($component, $zeusField, $hasVisibility); - return $component->content(new HtmlString($zeusField->description)); + return $component + ->helperText('') + ->content(new HtmlString($zeusField->description)); } }