Skip to content

Commit

Permalink
Fix payload currupting issue when updating custom properties
Browse files Browse the repository at this point in the history
  • Loading branch information
dasuni-30 committed Mar 16, 2024
1 parent 7a88bbf commit b9f5086
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export const CommonPluggableComponentForm: FunctionComponent<CommonPluggableComp
});

const modifiedCustomProperties: any = !isEmpty(resolvedCustomProperties) ?
resolvedCustomProperties?.toString()?.split(",")?.map(
resolvedCustomProperties?.toString()?.split(", ")?.map(
(customProperty: string) => {
const keyValuePair: string[] = customProperty.split("=");

Expand Down

0 comments on commit b9f5086

Please sign in to comment.