diff --git a/pkg/interface/src/views/landscape/components/GroupifyForm.tsx b/pkg/interface/src/views/landscape/components/GroupifyForm.tsx index 123ab63039..7f93574622 100644 --- a/pkg/interface/src/views/landscape/components/GroupifyForm.tsx +++ b/pkg/interface/src/views/landscape/components/GroupifyForm.tsx @@ -47,7 +47,8 @@ export function GroupifyForm(props: GroupifyFormProps) { ); } const mod = association.metadata.module || association['app-name']; - history.push(`/~landscape${values.group}/resource/${mod}${association['app-path']}`); + const newGroup = values.group || association['group-path']; + history.push(`/~landscape${newGroup}/resource/${mod}${association['app-path']}`); actions.setStatus({ success: null }); } catch (e) { console.error(e);