Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 2338ab9

Browse files
committed
resolve quotation mark error when searching
1 parent b216a10 commit 2338ab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

media-store/app-src/src/components/TracksPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const TracksContainer = () => {
8080
setLoading(true);
8181
const options = {
8282
$top: state.pagination.pageSize,
83-
substr: state.searchOptions.substr,
83+
substr: state.searchOptions.substr.replace(`'`, `''`),
8484
genreIds: state.searchOptions.genreIds,
8585
};
8686

0 commit comments

Comments
 (0)