Kyle Bayler

Results 8 issues of Kyle Bayler

Star titles don't respect rounding. e.g. ``` { half: true, halfShow: true, hints: ['Terrible', 'Poor', 'Average', 'Good', 'Great'], score: 4.1 } ``` The image correctly rounds to 4 stars -...

`wagtail-grapple` currently relys on a `wagtail` setting called `BASE_URL`, which is referenced in multiple places: https://github.com/torchbox/wagtail-grapple/search?q=BASE_URL However, in `wagtail==3.0` this is renamed to `WAGTAILADMIN_BASE_URL`. From https://github.com/wagtail/wagtail/releases/tag/v3.0: > Rename the setting...

### Issue Summary When a `StreamField` is rendered within a `MultiFieldPanel` (including any child StreamField's via `StreamBlock`s), the majority of the StreamField UI becomes invisible (with opacity set to `0`)....

type:Bug
component:Streamfield
component:Frontend
status:Unconfirmed

### Issue Summary While the Page Explorer menu is open, you cannot click the search box to perform a search. You can click the search icon to the left of...

type:Bug
component:Search
component:Menu

The README includes a [broken link for contributing](https://github.com/torchbox/storybook-django/blob/main/README.md?plain=1#L369) referencing https://github.com/torchbox/storybook-django/blob/main/CONTRIBUTING.md How do I set up the `storybook-django` project locally to explore?

bug

Wagtail provides a [Redirect model](https://github.com/wagtail/wagtail/blob/main/wagtail/contrib/redirects/models.py#L10) so it would be useful to add a reusable `RedirectFactory`. Example: ```python class RedirectFactory(factory.django.DjangoModelFactory): old_path = factory.Faker("slug") site = factory.SubFactory(wagtail_factories.SiteFactory) redirect_page = factory.SubFactory(wagtail_factories.PageFactory) redirect_link =...

This MR removes the bottom margin from the last element (`:last-child`) of rich text elements so that we rely on the parent block's spacing rather than that _plus_ whatever margin...