We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 937a503 commit 35e7de6Copy full SHA for 35e7de6
1 file changed
src/server/plugins/engine/components/GeospatialField.ts
@@ -69,8 +69,8 @@ export class GeospatialField extends FormComponent {
69
70
getContextValueFromFormValue(
71
features: GeospatialState | undefined
72
- ): string | null {
73
- return features ? JSON.stringify(features) : null
+ ): string[] | null {
+ return features?.map(({ id }) => id) ?? null
74
}
75
76
getContextValueFromState(state: FormSubmissionState) {
0 commit comments