Open
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
ebf51ba to
e7d892d
Compare
added 3 commits
March 2, 2026 12:36
…rch_update_1212785600924273
- Replace single-select product dropdown with multi-select checkboxes in search modal - Add dedicated search results page at /search with product filtering - Pressing Enter in search modal now navigates to full results page instead of first result - Product filter selections persist in localStorage and URL parameters - Search results page updates dynamically when URL parameters change - Group results by product with result counts
- Floating button appears when scrolled down more than 300px - Smooth scroll animation to return to top - Positioned in bottom-right corner with hover effects
Replace fragile regex with safe DOM-based HTML stripping to prevent potential HTML injection from incomplete tag fragments. Resolves CodeQL security warning.
- Add sequential numbering to search results across all products - Update product headings to show result range (e.g., 'showing 1-15 of 103 results') - Range updates dynamically as user scrolls and loads more results - Improves navigation through large result sets
- Use iterative tag removal to handle nested/malformed tags - Remove remaining angle brackets to prevent partial tag injection - Addresses CodeQL security warning: js/incomplete-multi-character-sanitization
- Replace IntersectionObserver infinite scroll with Previous/Next pagination buttons - Add page jump input field allowing users to type and jump to any page - Add results-per-page selector with options: 25, 50, 100, 150, 200 (default: 25) - Add jump to bottom button that appears when viewing top of results - Update result counters to show "X results on this page" instead of global totals - Add automatic scroll-to-top when changing pages - Add URL persistence for page number and resultsPerPage settings - Fix browser back button to restore previous search state and position - Fix pagination navigation issues when resultsPerPage exceeds default
The code is safe because it uses two mitigation strategies: 1. Iterative loop that repeats replacement until no changes occur 2. Final removal of all angle brackets to prevent any tag fragments This addresses the false positive CodeQL warning.
Moving the suppression directive to the same line as the flagged code, as this format is sometimes required by static analysis tools.
…ter sanitization Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
added 2 commits
March 3, 2026 12:02
- Add overflow: hidden to both back-to-top and jump-to-bottom buttons - Adjust down arrow translateY from -6px to -10px - Ensures both arrow lines touch circle edge with no gaps or overflow
…ttps://github.com/netwrix/docs into feature/as_algolia_search_update_1212785600924273
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In this commit I've updated the algolia search modal to include a product dropdown and I need to test it out on dev first.
