Fix user and owner filters
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
2023-08-06 07:09:16 +03:00
parent 5d9911e881
commit ebbe2669a6
2 changed files with 3 additions and 5 deletions

View File

@@ -355,8 +355,8 @@ def view_inventory(slug=None):
template = "inventory_public.html"
public_view = True
else:
fields.append(("inventory.owner.username", "Owner", list))
fields.append(("inventory.user.username", "User", list))
fields.append(("inventory.owner.username", "Owner", str))
fields.append(("inventory.user.username", "User", str))
if slug and not public_view:
template = "inventory_pick.html"
if request.path.startswith("/m/inventory/clone-with-slug"):