diff --git a/apps/client/src/common/components/view-params-editor/ViewParamsEditor.tsx b/apps/client/src/common/components/view-params-editor/ViewParamsEditor.tsx index 1a55e531e..25c04b998 100644 --- a/apps/client/src/common/components/view-params-editor/ViewParamsEditor.tsx +++ b/apps/client/src/common/components/view-params-editor/ViewParamsEditor.tsx @@ -55,7 +55,7 @@ const getURLSearchParamsFromObj = (paramsObj: ViewParamsObj, paramFields: ViewOp // unfortunately this means we run all the strings through the sanitation const valueWithoutHash = sanitiseColour(value); if (defaultValues[id] !== valueWithoutHash) { - handleValueString(id, value); + handleValueString(id, valueWithoutHash); } } });