From 316beea2d6a0976d8b53ecc4857e0ef1910c2dad Mon Sep 17 00:00:00 2001 From: Ramesh Mane <101566080+rameshmane7218@users.noreply.github.com> Date: Sat, 26 Oct 2024 06:59:55 +0000 Subject: [PATCH] fix(nc-gui): remove encode url component from shared prefill form --- packages/nc-gui/composables/useSharedFormViewStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/composables/useSharedFormViewStore.ts b/packages/nc-gui/composables/useSharedFormViewStore.ts index 32413b57f5..42087f98d0 100644 --- a/packages/nc-gui/composables/useSharedFormViewStore.ts +++ b/packages/nc-gui/composables/useSharedFormViewStore.ts @@ -443,7 +443,7 @@ const [useProvideSharedFormStore, useSharedFormStore] = useInjectionState((share if (Object.keys(route.query || {}).length) { columns.value = await Promise.all( (columns.value || []).map(async (c) => { - const queryParam = route.query[c.title as string] || route.query[encodeURIComponent(c.title as string)] + const queryParam = route.query[c.title as string] if ( !c.title ||