Camelcase column names could break parts of Piccolo Admin. It now works as expected:
.. code-block:: python
class Person(Table): This now works: firstName = Varchar()
Even though camelcase is unusual in Python, a user may be using an existing database, so it makes sense to support it. Thanks to sumitsharansatsangi for reporting this issue.
Fixed a bug with custom forms - under some situations they would fail to render. Thanks to sinisaos for discovering this issue. See `PR 208 <https://github.com/piccolo-orm/piccolo_admin/pull/208>`_ for more info.