We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71cf474 commit 53285eaCopy full SHA for 53285ea
frontend/src/pages/zaaktype/zaaktype.action.ts
@@ -324,7 +324,10 @@ export async function selectZaaktypeVersionAction(
324
action: TypedAction<"SELECT_VERSION", SelectZaaktypeVersionPayload>,
325
) {
326
const payload = action.payload;
327
- return redirect(`../${payload.uuid}`);
+
328
+ const url = new URL(window.location.href);
329
+ url.searchParams.delete("editing");
330
+ return redirect(`../${payload.uuid}${url.search}${url.hash}`);
331
}
332
333
/**
0 commit comments