fix(tickets): make list search and status/priority filters work #139
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/mapps-154-tickets-list-filters"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The Tickets list search box and the status/priority dropdowns updated
their signals but nothing narrowed the rendered rows, so typing a query
or picking a status left the list unchanged and fired no request
(MAPPS-154, the same no-refetch defect class as MAPPS-148/MAPPS-153).
Filter the loaded ticket set client-side: search matches ticket number,
title, company, and assignee case-insensitively; status and priority
match through the existing humanize helpers so the raw server value and
the option value normalize to the same label. An empty selection matches
all rows, so clearing search/filters restores the full list. Add the
missing "New" status option so freshly created tickets are reachable.
#MAPPS-154