Skip to content

Commit c061136

Browse files
Fix filter icon bug. Fixes #95
1 parent 18988ed commit c061136

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Fixed issue where incorrect repository icons were shown occasionally in the filter panel. ([#95](https://github.com/sourcebot-dev/sourcebot/issues/95))
13+
1014
## [2.5.1] - 2024-11-26
1115

1216
### Added

packages/web/src/app/search/components/filterPanel/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const FilterPanel = ({
5151
);
5252

5353
setRepos(_repos);
54-
}, [matches, setRepos]);
54+
}, [matches, repoMetadata, setRepos]);
5555

5656
useEffect(() => {
5757
const _languages = aggregateMatches(

0 commit comments

Comments
 (0)