Skip to content

Commit

Permalink
removing meta params from serialized field format
Browse files Browse the repository at this point in the history
  • Loading branch information
ppisljar committed Oct 14, 2020
1 parent df06935 commit d7fb5de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/data/common/field_formats/field_format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ export abstract class FieldFormat {

const params = transform(
this._params,
(uniqParams: any, val, param) => {
(uniqParams: any, val, param: string) => {
if (param === 'parsedUrl') return;
if (param && val !== get(defaultsParams, param)) {
uniqParams[param] = val;
}
Expand Down

0 comments on commit d7fb5de

Please sign in to comment.