Skip to content

Commit

Permalink
Handle URI encoded chars in pipeline name when cloning
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Apr 22, 2020
1 parent 07c07f4 commit db6dc93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const PipelinesClone: FunctionComponent<RouteComponentProps<ParamProps>>
const { services } = useKibana();

const { error, data: pipeline, isLoading, isInitialRequest } = services.api.useLoadPipeline(
sourceName
decodeURIComponent(sourceName)
);

useEffect(() => {
Expand Down

0 comments on commit db6dc93

Please sign in to comment.