Damien Bezborodov
Damien Bezborodov
Add console warning for old API from #6.
While investigating #42, I noticed that our `find`/`match` algorithm could be improved by using `closest`. For example: ```javascript const element = addedNode.closest(selector) || addedNode.querySelector(selector); ```
There is currently no comprehensive test suite. This makes it near impossible to ensure that nothing breaks whilst making changes.
### Describe the bug Vim creates swapfiles when editing a file. They take the filename format `.filename.swp`. If migrations are run with swapfiles present, the migrations attempt to execute them,...
It seems that `flask_rbac` is using deprecated API. `before_first_request` is no longer supported. ``` Traceback (most recent call last): File "app/uwsgi.py", line 4, in app = create_app() ^^^^^^^^^^^^ File "/opt/www/gaas-bms/app/__init__.py",...
When using `find_or_create_by` there could be a race condition between searching for the record, not finding it, and then creating it, if another process creates the record in the meantime...
I have been experiencing a **500 Internal Server Error** for this map: http://resource.openra.net/maps/18859/ Then, I attempted to re-upload the map to see if that would fix it. It was then...
See issue #150. This works around an issue with `:is` and `v-model` preventing initial Input values from appearing in the form. I suspect the root cause of this issue is...
Usage as per below: ``` Example Some content. An interesting footer. ``` Or: ``` Example Some content. ```
`flask_menu` is now **[broken as of Flask 2.3.0](https://flask.palletsprojects.com/en/2.3.x/changes/)** (pallets/flask#4605): > The `app.before_first_request` and `bp.before_app_first_request` decorators are removed. Causes: inveniosoftware/flask-breadcrumbs#56.