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 ||