Skip to content

Commit

Permalink
fix(ui-hydro): add missing matrix path encoding (#1940)
Browse files Browse the repository at this point in the history
  • Loading branch information
hdinia authored Feb 21, 2024
1 parent 7e69104 commit e994add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/services/api/matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const editMatrix = async (
matrixEdit: MatrixEditDTO[],
): Promise<void> => {
const res = await client.put(
`/v1/studies/${sid}/matrix?path=${path}`,
`/v1/studies/${sid}/matrix?path=${encodeURIComponent(path)}`,
matrixEdit,
);
return res.data;
Expand Down

0 comments on commit e994add

Please sign in to comment.