Open
Description
Motivation
Currently, the rules page navigation for filtering tags relies on sessionStorage
, which is not functioning properly. This has led to a regression in filtering behavior on the Misconfiguration tab. Since the rules page now supports URL parameters for filtering tags, we should update the implementation to use URL params instead of sessionStorage
. This will improve navigation reliability and maintainability.
Definition of done
- Update the navigation logic to pass filtering tags via URL parameters instead of
sessionStorage
. - Ensure that clicking on a rule applies the correct filters upon redirection to the rules page.
- Validate that the new approach works correctly for both the Misconfigurations and Vulnerabilities tabs.
- Perform regression testing to ensure there are no unintended side effects.
- Get feedback from relevant team members before merging.
Out of scope
- Any refactorings unrelated to rule filtering behavior.