mirror fix on release JS

forgejo
Unknwon 10 years ago
parent bc8721fb6c
commit cf7ebfbdc8

@ -435,8 +435,13 @@ function initHookTypeChange() {
function initRepoRelease() { function initRepoRelease() {
$('#release-new-target-branch-list li').click(function() { $('#release-new-target-branch-list li').click(function() {
$('#repo-branch-current').text($(this).text()); if (!$(this).hasClass('checked')) {
$('#tag-target').val($(this).text()); $('#repo-branch-current').text($(this).text());
$('#tag-target').val($(this).text());
$(this).parent().find('.checked').removeClass('checked');
$(this).addClass('checked');
}
}) })
} }

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save