Skip to content

Commit

Permalink
Fix search filter in library MiczFlor#2290
Browse files Browse the repository at this point in the history
  • Loading branch information
pabera committed Mar 15, 2024
1 parent 07208e6 commit 306fc91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webapp/src/components/Library/lists/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const LibraryLists = () => {
const [cardId] = useState(searchParams.get('cardId'));
const [musicFilter, setMusicFilter] = useState('');

const handleMusicFolder = (event) => {
const handleMusicFilter = (event) => {
setMusicFilter(event.target.value);
};

Expand All @@ -49,7 +49,7 @@ const LibraryLists = () => {
{isSelecting && <SelectorHeader />}
<Grid container sx={{ padding: '10px' }}>
<LibraryHeader
handleMusicFolder={handleMusicFolder}
handleMusicFilter={handleMusicFilter}
musicFilter={musicFilter}
/>
<Grid
Expand Down

0 comments on commit 306fc91

Please sign in to comment.