Skip to content

Commit

Permalink
Fix data stream name filter when activated from a url parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliacech committed Oct 22, 2020
1 parent eff3b40 commit 6f58544
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export const DataStreamList: React.FunctionComponent<RouteComponentProps<MatchPa
<DataStreamTable
filters={
isDeepLink && dataStreamName !== undefined
? `name=${attemptToURIDecode(dataStreamName)}`
? `name="${attemptToURIDecode(dataStreamName)}"`
: ''
}
dataStreams={dataStreams}
Expand Down

0 comments on commit 6f58544

Please sign in to comment.