We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using the Frame component with a FrameForm, when the FrameForm form is submitted, the URL used to fetch the new content overwrite any predefined search params here: https://github.com/studiometa/ui/blob/develop/packages/ui/organisms/Frame/Frame.ts#L145
Frame
FrameForm
It might be useful to merge the generated search params from the form data with any existing one.
for (const [param, value] of new URLSearchParams(new FormData(target.$el))) { url.searchParams.set(param, value); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the
Frame
component with aFrameForm
, when theFrameForm
form is submitted, the URL used to fetch the new content overwrite any predefined search params here: https://github.com/studiometa/ui/blob/develop/packages/ui/organisms/Frame/Frame.ts#L145It might be useful to merge the generated search params from the form data with any existing one.
The text was updated successfully, but these errors were encountered: