UI: duplicated "No projects match this search" empty-state renders twice in projects modal #99
Labels
No labels
accessibility
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
nsaspy/a0-symbolics#99
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
Summary
Commit
200ae83a(feat(webui): searchable chats and projects lists) added the "no results" empty-state for the projects modal twice — two identical<template x-if=...>blocks back to back. When a search matches nothing, two identical "No projects match this search." cards render stacked.Repro
zzzz).Location
webui/components/projects/project-list.html:79-85(first block)webui/components/projects/project-list.html:87-93(duplicate)200ae83a(on main via merge5116eb4d)Suggested fix
Delete one of the two duplicate
<template x-if>blocks (lines 87-93). Bonus: the twofilteredProjectList()calls in thex-ifexpressions re-evaluate the filter on every Alpine reactivity tick; consider a singlenoSearchResults()store getter.