Commit 7d6a96c7 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch...

Merge branch '12405-follow-up-from-set-project-path-on-localstorage-during-onboarding' into 'master'

Resolve "Follow-up from "Set project path on localStorage during onboarding""

Closes #12405

See merge request gitlab-org/gitlab-ee!15103
parents 5e5f39a3 38571140
......@@ -7,6 +7,10 @@ export const getProjectPath = () => {
const projectPathInput = activeTab.querySelector('#project_path');
const select = activeTab.querySelector('select.js-select-namespace');
if (!projectPathInput) {
return '';
}
if (select) {
const selectedOption = select.options[select.selectedIndex];
const { showPath } = selectedOption.dataset;
......
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