Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[nextjs][react]The language of the form is changed after clicking the submit button #1273

Merged
merged 4 commits into from
Dec 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/sitecore-jss-react-forms/src/components/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface ErrorComponentProps {

export interface FormProps {
form: SitecoreForm;
language?: string;
fieldFactory?: FieldFactory;
sitecoreApiHost: string;
sitecoreApiKey: string;
Expand Down Expand Up @@ -97,7 +98,11 @@ export class Form extends Component<FormProps, FormState & FieldStateCollection>
return <div>Form data invalid. Forget to set the rendering contents resolver?</div>;
}

const action = `${this.props.sitecoreApiHost}/api/jss/formbuilder?fxb.FormItemId=${form.metadata.itemId}&fxb.HtmlPrefix=${form.htmlPrefix}&sc_apikey=${this.props.sitecoreApiKey}&sc_itemid=${form.contextItemId}`;
const action = `${this.props.sitecoreApiHost}/api/jss/formbuilder?fxb.FormItemId=${
form.metadata.itemId
}&fxb.HtmlPrefix=${form.htmlPrefix}&sc_apikey=${this.props.sitecoreApiKey}&sc_itemid=${
form.contextItemId
}&sc_lang=${this.props.language || ''}`;

this._tracker.setFormData(
form.formItemId.value,
Expand Down