Still dealing with collections bug.

This commit is contained in:
Yaro Kasear 2025-10-10 08:07:09 -05:00
parent 8931888d9e
commit dc1d4111e2
4 changed files with 4 additions and 3 deletions

View file

@ -224,7 +224,7 @@ def init_entry_routes(app):
instance=obj,
fields_spec=fields_spec,
layout=layout,
submit_attrs={"class": "d-none", "disable": True}
submit_attrs={"class": "d-none", "disabled": True}
)
return render_template("entry.html", form=form)

View file

@ -76,7 +76,7 @@ def init_search_routes(app):
{"field": "updates", "format": lambda x: len(x)},
]
worklog_results = worklog_service.list({
'contact.label|work_item.label|updates.content__icontains': q,
'contact.label|work_item.label__icontains': q,
'fields': [
"contact.label",
"work_item.label",