Check .conflicts for checkboxes

This commit is contained in:
Morris Jobke 2015-10-08 17:13:28 +02:00
parent cba1aae073
commit 3c005bc020
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ var OCdialogs = {
$primaryButton.prop('disabled', true);
function updatePrimaryButton() {
var checkedCount = $dlg.find('th .checkbox:checked').length;
var checkedCount = $dlg.find('.conflicts .checkbox:checked').length;
$primaryButton.prop('disabled', checkedCount === 0);
}