EmilStenstrom / django-components

Create simple reusable template components in Django.
MIT License
953 stars 59 forks source link

fix: incorrect name for default slot in is_filled dict #482

Closed JuroOravec closed 1 week ago

JuroOravec commented 1 week ago

Just noticed that when I use a default slot, then the component_vars.is_filled contains key _DJANGO_COMPONENTS_DEFAULT_SLOT instead of the name of the default slot. _DJANGO_COMPONENTS_DEFAULT_SLOT is how we internally refer to the default slot before we know which slot it belongs to.

So this MR fixes that and adds a test.