Skip to content

Commit

Permalink
fix: encode identity search (#4691)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg authored Oct 2, 2024
1 parent b3da659 commit 0485601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/common/stores/feature-list-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ const controller = {
},
searchFeatures: _.throttle(
(search, environmentId, projectId, filter, pageSize) => {
store.search = encodeURIComponent(search)
store.search = encodeURIComponent(search||'')
controller.getFeatures(
projectId,
environmentId,
Expand Down

0 comments on commit 0485601

Please sign in to comment.