Krystof Beuermann
Krystof Beuermann
Just stumbled over this, any progress on this? Would you accept a PR changing the italic from underscore to asterisk in the draft-js-export-markdown ?
did anyone get this working? i stumbled over this problem too and can't get it working. Adding `RulesModelBaseMixin` to the Meta class did not solve it
for reference: i'm using this snippet right now (without hydration) ``` {% if components %} {% for component in components %} {{ component.json_obj|json_script:component.data_identifier }} const container = document.getElementById('{{ component.identifier }}');...
Thanks for your solution @richeterre! This is how I did it with `async-storage` in react native ``` import * as AbsintheSocket from "@absinthe/socket"; import { createAbsintheSocketLink } from "@absinthe/socket-apollo-link"; import...
> avoid the letters ock( in any file that does have type annotations this worked for me and i had a good laugh when searching my code and finding this...
I'd love to see this!
I think this is a problem especially with mobile browsers, because the coherence input does not have autocapitalize set to off. Many users simply don't know that emails can be...
You can do something like this in your tests ``` from unittest import mock @mock.patch("captcha.fields.ReCaptchaField.validate") def my_test(self, mock_function): ``` and mock the validate function so it doesn't raise an exception
`AWS_S3_ADDRESSING_STYLE = "virtual"` also works for `eu-central-1`
I've been following the discussion on implementing a one-time code for email verification in django-allauth, and I'd like to offer a summary and some thoughts for further consideration. In modern...