Joshua Munn
Joshua Munn
I've also merged @guanyilun and @tgbugs fixes into my fork. It would be good to get these merged in so the melpa version is up to date.
When installing with `pip install bottle-react` on OSX (10.14.6), using python 3.6.0, I get the following error: ``` ERROR: Command errored out with exit status 1: command: /Users/joshua/projects/horvath/venv/bin/python3 -c 'import...
### Describe the bug Originally shared in https://wagtailcms.slack.com/archives/C81FGJR2S/p1627024765193700 Running Firefox 90.0.1 (64-bit) on Linux. Characters created using the compose key (for example, "compose-el-dash" for £), appear momentarily before disappearing. Copy-pasting...
This PR updates the `snippet` field of the grapple `SnippetChooserBlock` class so snippet values in stream fields return the snippet model's fields, rather than just a single string field. To...
`FieldDoesNotExist` error when editing translation with draft source after migration removes field
## Traceback ``` Internal Server Error: /admin/pages/10/edit/ Traceback (most recent call last): File "/home/jmunn/.virtualenvs/example-venv/lib/python3.8/site-packages/django/db/models/options.py", line 672, in get_field return self.fields_map[field_name] KeyError: 'foo_description' During handling of the above exception, another exception...
I believe this fixes #85. I was getting the error ``` hy-shell--redirect-check-prompt-regexp: No prompt found or ‘comint-prompt-regexp’ not set properly ``` when running the tests, and when starting the first...
I hope you don't mind the unsolicited PR but I made the changes for my own use anyway so thought it makes sense to share. Current behaviour (installed from master):...
Given a factory definition of ```python class LinkStreamBlockFactory(wagtail_factories.StreamBlockFactory): internal = factory.SubFactory(PageStructBlockFactory) document = factory.SubFactory(DocumentStructBlockFactory) external = factory.SubFactory(ExternalLinkStructBlockFactory) class Meta: model = blocks.LinkStreamBlock class Params: is_internal = factory.Trait(**{"0": "internal"}) ``` it...
Hi, would you be open to a pull request adding support for `io.BytesIO` as input? We use `BytesIO` to ease creating file-like objects for images in testing, but this is...
Adds a `GraphQLRichText` type, as suggested in https://github.com/torchbox/wagtail-grapple/issues/265. There are a couple of small points I'm unsure about, I will address them in comments below.