We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After I change the location and attempt to save payload hangs. It sometimes works and sometimes not
Here is my config:
googleMapAutoCompletePlaces({ apiKey: key, //<google maps API Key Goes Here> name: "google_location", label: "Google Location", required: true, minLengthAutocomplete: 3, autocompletionRequest: { bounds: [ { lat: 50, lng: 50 }, { lat: 100, lng: 100 }, ], }, //Note: for more information check google documentation(https://developers.google.com/maps/documentation/javascript/reference/places-autocomplete-service#AutocompletionRequest). debounce: 400, admin: { description: "Please pick a location", disabled: false, hidden: false, readOnly: false, placeholder: "Please select a location", }, access: { create: () => true, read: () => true, update: () => true, }, latLng: { showFields: true, name: "latlng", label: "location coordinates", required: true, admin: { description: "Auto populated location coordinates", disabled: false, hidden: false, }, access: { create: () => true, read: () => true, update: () => true, }, }, }),
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After I change the location and attempt to save payload hangs. It sometimes works and sometimes not
Here is my config:
The text was updated successfully, but these errors were encountered: