Skip to content

Commit

Permalink
add resize to textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
iacopolea committed Jun 24, 2024
1 parent 3f82738 commit 287d1cd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/pages/campaigns/components/campaignForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ const CampaignFormContent = ({ dossier, isEdit, duplicate }: FormProps) => {
<TextareaField
name="description"
label="Campaign Description"
resize="vertical"
placeholder="Verrà testato il prodotto [nome prodotto, tipologia del prodotto] attraverso un test di [tipologia di test].
Il suo scopo principale è [in che modo il prodotto migliora la vita delle persone]."
/>
Expand Down Expand Up @@ -225,11 +226,13 @@ const CampaignFormContent = ({ dossier, isEdit, duplicate }: FormProps) => {
name="goal"
label="Test Perimeter"
placeholder="The test will cover..."
resize="vertical"
/>
<TextareaField
name="outOfScope"
label="Out of scope"
placeholder="The test will NOT cover..."
resize="vertical"
/>
</FieldWrapper>
</Card>
Expand All @@ -248,6 +251,7 @@ const CampaignFormContent = ({ dossier, isEdit, duplicate }: FormProps) => {
<TextareaField
name="deviceRequirements"
label="Device requirements"
resize="vertical"
placeholder="If necessary, enter specific device requirements here"
/>
</FieldWrapper>
Expand Down Expand Up @@ -279,6 +283,7 @@ const CampaignFormContent = ({ dossier, isEdit, duplicate }: FormProps) => {
<TextareaField
name="targetNotes"
label="Trybers' additional requirements"
resize="vertical"
placeholder="The target has to..."
/>
</FieldWrapper>
Expand All @@ -295,6 +300,7 @@ const CampaignFormContent = ({ dossier, isEdit, duplicate }: FormProps) => {
<TextareaField
name="notes"
label="Additional test notes"
resize="vertical"
placeholder="The kick-off call will be on... Customers will be release on production on..."
/>
</Card>
Expand Down

0 comments on commit 287d1cd

Please sign in to comment.