Closed joelanman closed 1 year ago
on support, people often try something like this:
{{ govukInput({ label: { text: "Age in years" }, id: "age", name: "age", value: "{{data['age']}}" }) }}
when the correct syntax is
{{ govukInput({ label: { text: "Age in years" }, id: "age", name: "age", value: data['age'] }) }}
we do cover this in the tutorial but maybe it would help to have a guide page too
covered here: https://prototype-kit.service.gov.uk/docs/pass-data
on support, people often try something like this:
when the correct syntax is
we do cover this in the tutorial but maybe it would help to have a guide page too