Skip to content

Commit

Permalink
fix version search in the website (#14016)
Browse files Browse the repository at this point in the history
fix #14015

changelog: none
  • Loading branch information
blyxyas authored Jan 17, 2025
2 parents 8d0c0eb + e307b2f commit e359e88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/gh-pages/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@ window.filters = {
|| !filters.levels_filter[lint.level]
|| !filters.applicabilities_filter[lint.applicability]
|| !(filters.version_filter["="] === null || lint.version === filters.version_filter["="])
|| !(filters.version_filter["≥"] === null || lint.version > filters.version_filter["≥"])
|| !(filters.version_filter["≤"] === null || lint.version < filters.version_filter["≤"])
|| !(filters.version_filter["≥"] === null || lint.version >= filters.version_filter["≥"])
|| !(filters.version_filter["≤"] === null || lint.version <= filters.version_filter["≤"])
);
if (lint.filteredOut || lint.searchFilteredOut) {
lint.elem.style.display = "none";
Expand Down

0 comments on commit e359e88

Please sign in to comment.