Various bug fixes for new forms.

This commit is contained in:
Landon Wark
2024-04-25 08:55:32 -05:00
parent 5466c78c3a
commit 8cc161ec56
18 changed files with 520 additions and 218 deletions

View File

@@ -65,8 +65,8 @@ class Organization(BaseClass):
pass
match name:
case str():
# logger.debug(f"Looking up organization with name: {name}")
query = query.filter(cls.name==name)
# logger.debug(f"Looking up organization with name starting with: {name}")
query = query.filter(cls.name.startswith(name))
limit = 1
case _:
pass