Vasiliy Rusin
Vasiliy Rusin
Sorry if it seems mocking, but what about highlight 11? 😃 To be serious, it's a really great job, you are awesome.
@PeachScript I think it's sound quite good. But what if `li` doesn't have styles but `li>div` have its? I strongly believe that tag attribute the same as in `router-link` will...
I have `id` field but after save I have a new id. Also, PATCH needs the whole object to update it.
More information about this problem ### models.py ``` class Name(models.Model): string = models.TextField() item = models.ForeignKey('Genre', on_delete=models.CASCADE, related_name='names', blank=True, null=True) class Genre(models.Model): pass ``` ### serializers.py ``` class GenreNameSerializer(serializers.ModelSerializer): class...
> You have a new ID after you make patch query with nested id? Yes. Then I send JSON with PATCH ``` { "id": 3, "names": [ { "id": 29,...
Maybe a problem is that `Name` model use `InheritanceManager` from **django-model-utils**. Is drf-writable-nested compatible with django-model-utils?
It seems it crashes with inheritance tables. I'm not absolutely sure why this error was thrown the only now. Log below if it can help ``` IntegrityError: UNIQUE constraint failed:...
Lots of CI scripts already use `npm ci`, of course bun has flag, but I'm sure that change `npm` to `bun` will be more clear for non JS developers or...