Skip to content
Snippets Groups Projects
Commit e2c5f7da authored by Arie Peterson's avatar Arie Peterson
Browse files

Include problemGroup and problem in form submission

parent 8886e7bc
No related branches found
No related tags found
1 merge request!16Resolve "Include problemGroup and problem in form submission"
......@@ -105,6 +105,16 @@ export const ContactForm: React.FC<ContactFormProps> = ({
value={urgentIntent ? 'urgent' : 'normal'}
type="hidden"
/>
<input
name="HelpfulContactForm[problemGroup]"
value={problemGroup}
type="hidden"
/>
<input
name="HelpfulContactForm[problem]"
value={problem}
type="hidden"
/>
{urgentIntent && (
<UrgentRequest submit={submit}/>
)}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment