Skip to content

Commit

Permalink
Fix #41
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrozadotdev committed Sep 23, 2024
1 parent 886ca9e commit d1f5d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/packages/openblocks/src/util/appUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function openApp(props: {
if (!m || !props.applicationId) {
return;
}
let targetURL = APPLICATION_VIEW_URL(props.applicationId, m.params.viewMode);
let targetURL = APPLICATION_VIEW_URL(props.applicationId, m.params.viewMode || "view");
// query
if (props.queryParams && !isEmpty(props.queryParams)) {
targetURL += `?${props.queryParams}`;
Expand Down

0 comments on commit d1f5d5e

Please sign in to comment.