Adrian
Adrian
Not the author of the issue (not sure why you pinged him) but a maintainer: Yes sure, feel free to work on it. PRs to fix bugs are always welcome!
There's already a draft PR for this... why do you want to start working on yet another one while there's an open PR? :)
Looks like it's missing in this regex. Try this change in api.py line 50: ```patch -RE = r'(?P[\w\s]+)/(?P\w+(?:-[\w\s]+)*)' +RE = r'(?P[\w\s-]+)/(?P\w+(?:-[\w\s]+)*)' ``` FWIW that API is extremely legacy, you're most...
https://docs.getindico.io/en/stable/http-api/access/#api-token-authentication Depending on what you want to do, you need to create a token with one of these scopes: - full:everything - Everything (all methods) - read:everything - Everything (only...
I guess you pressed ENTER too early? ;)
Are you also cloning registration forms? Or do you want to keep the tags even when not cloning the individual forms?
This was implemented in #6964
But... this is already the case even without the change (tested in both Firefox and Chrome)?!
I think in most places we just added the `editor-output` class to get the right styling. Can you try if this does a nice job in this case as well?...
Since I don't think this is already part of the Select component: We need the search to ignore diacritics, similar to the code that was added e.g. in #6448. This...