Skip to content

Commit

Permalink
Kowalski filter: instrument form copy fix (#539)
Browse files Browse the repository at this point in the history
Kowalski filter: instrument form copy fix
  • Loading branch information
Theodlz authored Oct 23, 2023
1 parent 4d793d0 commit 7c63f8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ const FilterPlugins = ({ group }) => {
],
};
// we make a copy of the existing params so we don't modify the original
const params = Object.assign({}, existingParams);
const params = JSON.parse(JSON.stringify(existingParams));
// remove priority, start_date, and end_date if they exist in params.schema and params.uiSchema
const deleted = [];
if (params.formSchema) {
Expand Down

0 comments on commit 7c63f8f

Please sign in to comment.