redirect false on some urls

This commit is contained in:
Andras Bacsai
2023-12-21 09:33:11 +01:00
parent 794cfbd8eb
commit 5fb5845e90
6 changed files with 6 additions and 6 deletions

View File

@@ -13,6 +13,6 @@ class EmptyProject extends Component
'name' => generate_random_name(),
'team_id' => currentTeam()->id,
]);
return $this->redirectRoute('project.show', ['project_uuid' => $project->uuid, 'environment_name' => 'production'], navigate: true);
return $this->redirectRoute('project.show', ['project_uuid' => $project->uuid, 'environment_name' => 'production'], navigate: false);
}
}