Skip to content

Commit

Permalink
convert related filter to int to compare with item.hid
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Jan 22, 2024
1 parent dc3adfd commit e14df58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ function getHighlight(item: HistoryItem) {
return undefined;
}
const highlightsKey = filterClass.getFilterValue(unref(filterText), "related");
const highlightsKey = parseInt(filterClass.getFilterValue(unref(filterText), "related"));
if (!highlightsKey) {
return undefined;
}
Expand Down

0 comments on commit e14df58

Please sign in to comment.