Nat Gordon
Nat Gordon
My setup it is something along the lines of this: ``` class Location(models.Model): point = models.PointField(geography=True) class LocationFilterSet(filters.FilterSet): within = GeometryFilter( field_name="point", srid=4326, method="filter_within" ) class Meta: model = Location...
**Describe the bug** When updating the server props and staying on the same route, the PAGE_VIEW event (and events added to `publisheEventsOnNavigate`) are being published. **To Reproduce** Clone and run...
**Describe the bug** When a server request contains a query param which contains a single double quote (`"`), the server will crash with a JSON parse error. Edit: As mentioned...
Hi folks, Love this package and loving the tabbed fieldsets & inlines. One issue we have encountered is that if there are errors in a different tab, it is very...
`default_app_config` was [deprecated in Django 3.2 ](https://docs.djangoproject.com/en/3.2/releases/3.2/#automatic-appconfig-discovery). Given this project now only supports a minimum of Django 3.2 the `default_app_config` should be removed. Note, I came across this because Django...
### Have you experienced this bug with the latest version of the template? Yes ### Steps to Reproduce The Remix documentation indicates that projects should migrate to Remix Vite. It...