Skip to content

Commit

Permalink
Suporte les apostrophes dans la fonction de recherche des indicateurs
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-rutkowski committed Jun 12, 2024
1 parent df6562b commit 1ab11c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/indicateurs/fetchFilteredIndicateurs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const fetchFilteredIndicateurs = async (
.split(' ')
.map(s => s.trim())
.filter(s => !!s)
.map(s => `'${s}':*`)
.map(s => `"${s}":*`)
.join(' & ')
);
}
Expand Down

0 comments on commit 1ab11c8

Please sign in to comment.