We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4497db9 commit 0186497Copy full SHA for 0186497
web_src/js/index.js
@@ -758,8 +758,8 @@ async function initRepository() {
758
// Repo Creation
759
if ($('.repository.new.repo').length > 0) {
760
$('input[name="gitignores"], input[name="license"]').on('change', () => {
761
- const gitignores = $('input[name="gitignores"]').prop('checked');
762
- const license = $('input[name="license"]').prop('checked');
+ const gitignores = $('input[name="gitignores"]').val();
+ const license = $('input[name="license"]').val();
763
if (gitignores || license) {
764
$('input[name="auto_init"]').prop('checked', true);
765
}
0 commit comments