Commit eaf91244 authored by Sean McGivern's avatar Sean McGivern

Merge branch '332282-fix-vue-router-issue-on-project-homepage' into 'master'

Fix upload-file-experiment-trigger setting base route

See merge request gitlab-org/gitlab!63487
parents 643ae006 f528dd41
......@@ -264,7 +264,7 @@ class ProjectPresenter < Gitlab::View::Presenter::Delegated
'original_branch' => default_branch_or_main,
'can_push_code' => 'true',
'path' => project_create_blob_path(project, default_branch_or_main),
'project_path' => project.path
'project_path' => project.full_path
}
)
end
......
......@@ -585,7 +585,7 @@ RSpec.describe ProjectPresenter do
"can_push_code" => "true",
"original_branch" => "master",
"path" => "/#{project.full_path}/-/create/master",
"project_path" => project.path,
"project_path" => project.full_path,
"target_branch" => "master"
}
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment