Skip to content
Snippets Groups Projects
Commit 5d709e7e authored by Martin Wortschack's avatar Martin Wortschack Committed by Phil Hughes
Browse files

Resolve "Selecting an autofill suggestion for project name will not update the project slug"

parent 1883e97e
No related branches found
No related tags found
1 merge request!10495Merge Requests - Assignee
Loading
Loading
@@ -147,7 +147,7 @@ const bindEvents = () => {
 
$projectImportUrl.keyup(() => deriveProjectPathFromUrl($projectImportUrl));
 
$projectName.keyup(() => {
$projectName.on('keyup change', () => {
onProjectNameChange($projectName, $projectPath);
hasUserDefinedProjectPath = $projectPath.val().trim().length > 0;
});
Loading
Loading
---
title: Update project path on project name autofill
merge_request: 22016
author:
type: other
Loading
Loading
@@ -21,8 +21,9 @@ describe 'Import/Export - project import integration test', :js do
context 'when selecting the namespace' do
let(:user) { create(:admin) }
let!(:namespace) { user.namespace }
let(:project_name) { 'Test Project Name' + SecureRandom.hex }
let(:project_path) { 'test-project-path' + SecureRandom.hex }
let(:randomHex) { SecureRandom.hex }
let(:project_name) { 'Test Project Name' + randomHex }
let(:project_path) { 'test-project-name' + randomHex }
 
context 'prefilled the path' do
it 'user imports an exported project successfully' do
Loading
Loading
@@ -30,7 +31,6 @@ describe 'Import/Export - project import integration test', :js do
 
select2(namespace.id, from: '#project_namespace_id')
fill_in :project_name, with: project_name, visible: true
fill_in :project_path, with: project_path, visible: true
click_import_project_tab
click_link 'GitLab export'
 
Loading
Loading
@@ -79,7 +79,6 @@ describe 'Import/Export - project import integration test', :js do
 
select2(user.namespace.id, from: '#project_namespace_id')
fill_in :project_name, with: project.name, visible: true
fill_in :project_path, with: project.path, visible: true
click_import_project_tab
click_link 'GitLab export'
attach_file('file', file)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment