Trent Holliday

Results 12 issues of Trent Holliday

The FakeQuerySet object does not appear to have support for randomizing the order using `order_by('?')`. It treats `?` as the name of a field on the model.

This fixes #1245 where the select2 fields don't honor the Django dark mode theme. The fix requires using the CSS variables defined by the Django admin. These variables get used...

Fixing an issue where dragging an inline admin section would initialize the autocomplete fields during the dragging phase and when dragging stopped the autocomplete field would be reset and not...

When there was an abstract model in between a concrete subclass and it's `PolymorphicModel` class, the admin would not allow the child model to be moved because it was not...

**Describe the bug** When running black using pre-commit against a generated Django migration file, the following error is observed: ``` ➜ backend git:(main) ✗ pre-commit run black --all-files black....................................................................Failed -...

T: bug
help wanted
C: crash
F: strings
C: preview style

Hi! Want to start by saying thanks for writing and maintaining this package. I noticed an issue with handling validation errors for values inside a `anyOf` (and likely `oneOf`) not...

bug

### Description Menu onSelectionChange not resolving to correct type. ### CodeSandbox/Snack link https://snack.expo.dev/@trumpet2012/gluestack-menu-typescript-issue ### Steps to reproduce See provided snack link for reproducible issue (note that the types aren't working...

bug
gluestack-ui-unstyle

We have a lambda function that gets called as part of our cloudformation deployment to run collectstatic. After upgrading django-storages from 1.14.3 to 1.14.4 we started seeing the following errors...

This PR adds support for ManyToMany fields to specify their through tables as strings. In the case of referencing models in the same app you can now do `through="ModelName"`. If...

Updated the example showing how to use database.write to include a proper implementation of the `.update` method where the record to modify comes from the arg in the update callback.