Skip to content
Snippets Groups Projects
Commit 62a87238 authored by Jad Kaddour's avatar Jad Kaddour
Browse files

Merge branch '29-include-problemgroup-and-problem-in-form-submission' into 'main'

Resolve "Include problemGroup and problem in form submission"

Closes #29

See merge request !16
parents 8886e7bc e2c5f7da
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