unified-list: fix multiple entity rows showing same hover state#1012
unified-list: fix multiple entity rows showing same hover state#1012aquaductape merged 1 commit intomainfrom
Conversation
…condition is checked by entity id. Now hover condition is checked by entity row's component id
Code reviewThis PR fixes a bug where multiple entity rows show the same hover state. The implementation correctly addresses the issue by using However, there is one compliance issue: Missing Test for Bug FixIssue: The CLAUDE.md testing guidelines require that bug fixes include tests to identify the issue before fixing it:
Recommendation: Add tests that verify:
This will help prevent regression of this bug in the future. Technical review: The code changes themselves are correct - using |
Multiple entity rows are showing same hover state, showing mark as down checkbox, due to hover condition is compared by entity.id.
Fix is changing hover comparison to entity component id.