Skip to content
Snippets Groups Projects
Commit ba909fb5 authored by Douwe Maan's avatar Douwe Maan
Browse files

Disable import URL field in New project form since it's hidden by default

parent 8e156d66
No related branches found
No related tags found
1 merge request!10803Fix Git repository URL field on New Project page
Pipeline #
Loading
Loading
@@ -145,7 +145,8 @@
}
});
 
$('#project_import_url').disable();
$('.import_git').click(function( event ) {
$projectImportUrl = $('#project_import_url')
$projectImportUrl.attr('disabled', !$projectImportUrl.attr('disabled'))
$projectImportUrl = $('#project_import_url');
$projectImportUrl.attr('disabled', !$projectImportUrl.attr('disabled'));
});
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